From 26ea355c28f674b168259aadc6847d46fafb313a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Tue, 21 Jul 2015 17:16:32 +0200 Subject: 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. --- core/test.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/test.mk') 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)),) -- cgit v1.2.3