Browse Source

Fix sed call.

Andrei Soroker 13 years ago
parent
commit
fb967b9bbe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -43,7 +43,7 @@ ebin/%.beam : src/%.erl
 	$(ERLC) $(ERLC_FLAGS) -o $(dir $@) $<
 
 ebin/%.app : src/%.app.src Makefile
-	sed -e s/git/\"$(VERSION)\"/g $< > $@
+	sed -e 's|git|\"$(VERSION)\"|g' $< > $@
 
 test_ebin/%.beam : test_src/%.erl
 	$(ERLC) $(ERLC_FLAGS) -o $(dir $@) $<