summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-10-02 02:17:04 +0200
committerKarolin Seeger <kseeger@samba.org>2009-05-13 09:25:16 +0200
commitd3f39da433c22632007a9300d4dab4cda0dfd43e (patch)
treec14061a1b6d768784c2beb79e88a1bb9d5d88903
parent191e4c415e7008070110970ba51f3f82dc493a8b (diff)
downloadsamba-d3f39da433c22632007a9300d4dab4cda0dfd43e.tar.gz
samba-d3f39da433c22632007a9300d4dab4cda0dfd43e.tar.xz
samba-d3f39da433c22632007a9300d4dab4cda0dfd43e.zip
Fix bug 5798: "CFLAGS info lost in configure"
picked from 9097a67de Volker (cherry picked from commit 9ffb1e6f0ded2647efe567912873a1a63e2ffed1)
-rw-r--r--source/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/configure.in b/source/configure.in
index 257d2ad5910..dce60bcc7b0 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -127,7 +127,7 @@ fi
if test "x$debug" = "xyes" ; then
CFLAGS="${CFLAGS} -g"
else
- CFLAGS="-O"
+ CFLAGS="${CFLAGS} -O"
fi
CFLAGS="${CFLAGS} -D_SAMBA_BUILD_=3"