diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-02-21 16:54:46 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-02-21 16:54:46 -0500 |
commit | ccef0bb7171f90d572e47e845b6f728073336770 (patch) | |
tree | 391e2016e7c855b6e5d98e5899fa224ab32bc088 /Makefile | |
parent | defde40088462873ef714344bdf859e91b6349fd (diff) | |
download | bfs-ccef0bb7171f90d572e47e845b6f728073336770.tar.xz |
Use EXTRA_CFLAGS instead of CFLAGS in make distcheck
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -233,7 +233,7 @@ distcheck: ifneq ($(OS),Darwin) +$(MAKE) -B msan check CC=clang $(DISTCHECK_FLAGS) ifeq ($(ARCH),x86_64) - +$(MAKE) -B check CFLAGS="-m32" $(DISTCHECK_FLAGS) + +$(MAKE) -B check EXTRA_CFLAGS="-m32" $(DISTCHECK_FLAGS) endif endif +$(MAKE) -B release check $(DISTCHECK_FLAGS) |