diff options
author | Herb Lewis <herb@samba.org> | 2001-12-05 19:45:30 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2001-12-05 19:45:30 +0000 |
commit | f3e6f2d9536a7312729827d47e53f023bafb4ef5 (patch) | |
tree | b0b8e771d310e7b51fd66ed8b1e42708b1ff155a /source3/configure.in | |
parent | 7077558fb36d20dce626e1e3daede416ef9d3efc (diff) | |
download | samba-f3e6f2d9536a7312729827d47e53f023bafb4ef5.tar.gz samba-f3e6f2d9536a7312729827d47e53f023bafb4ef5.tar.xz samba-f3e6f2d9536a7312729827d47e53f023bafb4ef5.zip |
dont add -I./popt to CFLAGS it really belongs in FLAGS1 with other include
paths. This make it hard to use a script that overrides CFLAGS options.
(This used to be commit 646b5ae752f7cd00e057d0d7cc6001161125fd3f)
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 9f52cb7555..a306c8c479 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2536,12 +2536,13 @@ AC_MSG_CHECKING(whether to use included popt) if test x"$INCLUDED_POPT" = x"yes"; then AC_MSG_RESULT($srcdir/popt) BUILD_POPT='$(POPT_OBJS)' - CFLAGS="$CFLAGS -I$srcdir/popt" + FLAGS1="-I$srcdir/popt" else AC_MSG_RESULT(no) LIBS="$LIBS -lpopt" fi AC_SUBST(BUILD_POPT) +AC_SUBST(FLAGS1) ################################################# # final configure stuff |