aboutsummaryrefslogtreecommitdiffstats
path: root/core/test.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-07-21 17:16:32 +0200
committerLoïc Hoguin <[email protected]>2015-07-21 17:16:32 +0200
commit26ea355c28f674b168259aadc6847d46fafb313a (patch)
tree8323fb128447d623c9bf446034fba2c4cc8da298 /core/test.mk
parent56cbd9e0919b884025d9b21c4ad3de8bcc6fe573 (diff)
downloaderlang.mk-26ea355c28f674b168259aadc6847d46fafb313a.tar.gz
erlang.mk-26ea355c28f674b168259aadc6847d46fafb313a.tar.bz2
erlang.mk-26ea355c28f674b168259aadc6847d46fafb313a.zip
Don't use warning_as_errors for erlang.mk-style deps
Fix a bug where deps that use erlang.mk didn't have the -Werror option suppressed automatically.
Diffstat (limited to 'core/test.mk')
-rw-r--r--core/test.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/test.mk b/core/test.mk
index acc792a..83bbecb 100644
--- a/core/test.mk
+++ b/core/test.mk
@@ -20,7 +20,7 @@ ifneq ($(SKIP_DEPS),)
test-deps:
else
test-deps: $(ALL_TEST_DEPS_DIRS)
- $(verbose) for dep in $(ALL_TEST_DEPS_DIRS) ; do $(MAKE) -C $$dep; done
+ $(verbose) for dep in $(ALL_TEST_DEPS_DIRS) ; do $(MAKE) -C $$dep IS_DEP=1; done
endif
ifneq ($(wildcard $(TEST_DIR)),)