From: Yann Collet Date: Tue, 16 Jan 2018 19:50:16 +0000 (-0800) Subject: ensure MOREFLAGS are not lost in root->tests Makefile invocation X-Git-Tag: v1.3.4~1^2~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4e58455f67de7451b0316925e2944d7caa5f1fb;p=thirdparty%2Fzstd.git ensure MOREFLAGS are not lost in root->tests Makefile invocation --- diff --git a/Makefile b/Makefile index 8157bdd9d..d2c71ad39 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ check: shortest .PHONY: test shortest test shortest: - $(MAKE) -C $(PRGDIR) allVariants MOREFLAGS="-g -DZSTD_DEBUG=1" + $(MAKE) -C $(PRGDIR) allVariants MOREFLAGS+="-g -DZSTD_DEBUG=1" $(MAKE) -C $(TESTDIR) $@ .PHONY: examples diff --git a/tests/Makefile b/tests/Makefile index 95d0bf549..f3171efa5 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -98,7 +98,7 @@ zstd-nolegacy: $(MAKE) -C $(PRGDIR) $@ MOREFLAGS+="$(DEBUGFLAGS)" gzstd: - $(MAKE) -C $(PRGDIR) zstd HAVE_ZLIB=1 MOREFLAGS="$(DEBUGFLAGS)" + $(MAKE) -C $(PRGDIR) zstd HAVE_ZLIB=1 MOREFLAGS+="$(DEBUGFLAGS)" .PHONY: zstd-dll :