diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-10-05 10:49:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:12 -0500 |
commit | f6e72ba4a6df048d8512a9cd45cbdcf0f447d619 (patch) | |
tree | ab0ee36a9cbb0aa77ec6a9483929d0b16f4e4777 /source3 | |
parent | 04e7e6b457f651aeb83359e37c44dd374cd68091 (diff) | |
download | samba-f6e72ba4a6df048d8512a9cd45cbdcf0f447d619.tar.gz samba-f6e72ba4a6df048d8512a9cd45cbdcf0f447d619.tar.bz2 samba-f6e72ba4a6df048d8512a9cd45cbdcf0f447d619.zip |
r19096: - fix the build with included popt
- and fix some whitespaces
metze
(This used to be commit 4906e601511fc2056393d8519bb249e5cce926e4)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in index 2ccb69b371..bcc89b9ed5 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -5542,12 +5542,12 @@ fi AC_MSG_CHECKING(whether to use included popt) if test x"$INCLUDED_POPT" = x"yes"; then AC_MSG_RESULT(yes) - BUILD_POPT='$(POPT_OBJS)' - POPTLIBS='$(POPT_OBJS)' + BUILD_POPT='$(POPT_OBJ)' + POPTLIBS='$(POPT_OBJ)' FLAGS1="-I\$(srcdir)/popt" else AC_MSG_RESULT(no) - BUILD_POPT="" + BUILD_POPT="" POPTLIBS="-lpopt" fi AC_SUBST(BUILD_POPT) |