From 1d1c7e63b1701ef100ccc89783762a8b51ad7940 Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Fri, 7 Jun 2019 09:52:04 +0100 Subject: [PATCH] wmail: don't clobber CFLAGS. --- wmail/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmail/configure.in b/wmail/configure.in index 454919a..f00662e 100644 --- a/wmail/configure.in +++ b/wmail/configure.in @@ -53,14 +53,14 @@ dnl Enable Debugging? AC_ARG_ENABLE(debug, [ --enable-debug enable debugging ],, enable_debug=no) if test "$enable_debug" = yes; then - CFLAGS="-Wall -g -DDEBUG" + CFLAGS="$CFLAGS -Wall -g -DDEBUG" fi dnl Use delt's pixmaps instead of the default ones? AC_ARG_ENABLE(delt_xpms, [ --enable-delt-xpms enable delt's pixmaps ],, enable_delt_xpms=no) if test "$enable_delt_xpms" = yes; then - CFLAGS="$CFLAGS -DUSE_DELT_XPMS" + CFLAGS="$CFLAGS -DUSE_DELT_XPMS" fi AC_OUTPUT(Makefile src/Makefile)