From 913f90743ecc9ad6ae76ee1818b19e6f062d652b Mon Sep 17 00:00:00 2001 From: Slava Yurin Date: Fri, 26 Jun 2015 12:06:10 +0600 Subject: Fix deps regexp $$$$ after replace by make is $$ and in bash it is pid of process. --- core/deps.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/deps.mk') diff --git a/core/deps.mk b/core/deps.mk index f356c63..3bb43ae 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -45,7 +45,7 @@ ifneq ($(IS_DEP),1) endif @mkdir -p $(ERLANG_MK_TMP) @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; \ else \ echo $$dep >> $(ERLANG_MK_TMP)/deps.log; \ -- cgit v1.2.3