diff options
author | Richard Sharpe <sharpe@samba.org> | 2003-08-14 21:07:30 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2003-08-14 21:07:30 +0000 |
commit | 4e4558998ed3ac1c9c4568e64dd5d348e4cb87eb (patch) | |
tree | 105bebd35cb1490ebeb9ab5a2b4738aa9e315fe6 | |
parent | 8d670d117c44cc70907cb6747867a555418002ab (diff) | |
download | samba-4e4558998ed3ac1c9c4568e64dd5d348e4cb87eb.tar.gz samba-4e4558998ed3ac1c9c4568e64dd5d348e4cb87eb.tar.bz2 samba-4e4558998ed3ac1c9c4568e64dd5d348e4cb87eb.zip |
Small fix to include existing CPPFLAGS when looking for iconv.
(This used to be commit 772bb41a9d321c7f7377af01d1583c73fccb1e08)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 8e147cabff..b86eaf8252 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1544,7 +1544,7 @@ for i in $LOOK_DIRS ; do save_LIBS=$LIBS save_LDFLAGS=$LDFLAGS save_CPPFLAGS=$CPPFLAGS - CPPFLAGS="-I$i/include" + CPPFLAGS="$CPPFLAGS -I$i/include" dnl This is here to handle -withval stuff for --with-libiconv if test x"$ICONV_PATH_SPEC" = "xyes" ; then LDFLAGS="-L$i/lib" |