diff options
-rw-r--r-- | core/deps.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/deps.mk b/core/deps.mk index de2b168..433851f 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -44,7 +44,7 @@ ifneq ($(IS_DEP),1) @rm -f $(ERLANG_MK_TMP)/deps.log endif @for dep in $(ALL_DEPS_DIRS) ; do \ - if grep -q ^$$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; \ |