Browse Source

Fix deps regexp

$$$$ after replace by make is $$ and in bash it is pid of process.
Slava Yurin 10 years ago
parent
commit
913f90743e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/deps.mk

+ 1 - 1
core/deps.mk

@@ -45,7 +45,7 @@ ifneq ($(IS_DEP),1)
 endif
 endif
 	@mkdir -p $(ERLANG_MK_TMP)
 	@mkdir -p $(ERLANG_MK_TMP)
 	@for dep in $(ALL_DEPS_DIRS) ; do \
 	@for dep in $(ALL_DEPS_DIRS) ; do \
-		if grep -qs ^$$dep$$$$ $(ERLANG_MK_TMP)/deps.log; then \
+		if grep -qs ^$$dep$$ $(ERLANG_MK_TMP)/deps.log; then \
 			echo -n; \
 			echo -n; \
 		else \
 		else \
 			echo $$dep >> $(ERLANG_MK_TMP)/deps.log; \
 			echo $$dep >> $(ERLANG_MK_TMP)/deps.log; \