aboutsummaryrefslogtreecommitdiffstats
path: root/core/deps.mk
diff options
context:
space:
mode:
authorSlava Yurin <[email protected]>2015-06-26 12:06:10 +0600
committerSlava Yurin <[email protected]>2015-06-26 12:10:51 +0600
commit913f90743ecc9ad6ae76ee1818b19e6f062d652b (patch)
treecee9ca85c8c298d3a23c47562d1477bdedb791df /core/deps.mk
parent4050af2ddfe99190679546b4b89e4e06fc73d2fa (diff)
downloaderlang.mk-913f90743ecc9ad6ae76ee1818b19e6f062d652b.tar.gz
erlang.mk-913f90743ecc9ad6ae76ee1818b19e6f062d652b.tar.bz2
erlang.mk-913f90743ecc9ad6ae76ee1818b19e6f062d652b.zip
Fix deps regexp
$$$$ after replace by make is $$ and in bash it is pid of process.
Diffstat (limited to 'core/deps.mk')
-rw-r--r--core/deps.mk2
1 files changed, 1 insertions, 1 deletions
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; \