diff options
author | Björn Jacke <bj@sernet.de> | 2009-10-01 19:08:51 +0200 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2009-11-26 11:38:53 +0100 |
commit | 7e26d6c01eeda8d4d5658e85549c1581256dc385 (patch) | |
tree | a5ce7e2a10228adf45b1182a02d17290d4a90860 /source3/configure.in | |
parent | 215de162a4f4caca6a6f30899364a962493db829 (diff) | |
download | samba-7e26d6c01eeda8d4d5658e85549c1581256dc385.tar.gz samba-7e26d6c01eeda8d4d5658e85549c1581256dc385.tar.xz samba-7e26d6c01eeda8d4d5658e85549c1581256dc385.zip |
s3:configure: don't throw away PRINT_LIBS
PRINT_LIBS might have been set before intentionally, so don't thow it away.
(cherry picked from commit 432c6203c78ad0be482b85be0b583105c8378b62)
Diffstat (limited to 'source3/configure.in')
-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 249a5accad0..93de38dcc84 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -743,7 +743,7 @@ if test x$enable_cups != xno; then ac_save_PRINT_LIBS=$PRINT_LIBS CFLAGS="$CFLAGS `$CUPS_CONFIG --cflags`" LDFLAGS="$LDFLAGS `$CUPS_CONFIG --ldflags`" - PRINT_LIBS="-lcups" + PRINT_LIBS="$PRINT_LIBS -lcups" AC_CHECK_HEADERS(cups/cups.h cups/language.h) if test x"$ac_cv_header_cups_cups_h" = xyes -a \ x"$ac_cv_header_cups_language_h" = xyes; then |