diff options
author | Guillem Jover <guillem@debian.org> | 2004-11-21 22:32:29 +0000 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2004-11-21 22:32:29 +0000 |
commit | d75d62f6e1721d86f40a4ade1b971470c42ff1f2 (patch) | |
tree | fb1a63bf7a2acf14a3b09774fd74fc852b319789 | |
parent | bbb36052398a2776125844865bd3db85f014b450 (diff) |
Set CFLAGS at configure time and not at build time.
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 4ff41a2..c545332 100755 --- a/debian/rules +++ b/debian/rules @@ -119,6 +119,7 @@ stamp-configure: dh_testdir -mkdir build cd build && ../configure $(drivers) \ + CFLAGS="$(CFLAGS) -DNDEBUG" \ --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) touch stamp-configure @@ -127,6 +128,7 @@ stamp-configure-dbg: dh_testdir -mkdir build-dbg cd build-dbg && ../configure --enable-kdb $(drivers) \ + CFLAGS="$(CFLAGS)" \ --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) touch stamp-configure-dbg @@ -134,7 +136,7 @@ all build: build-gnumach: configure dh_testdir - $(MAKE) -C build CFLAGS="$(CFLAGS) -DNDEBUG" + $(MAKE) -C build $(MAKE) -C build/doc build-gnumach-dbg: configure-dbg |