summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2009-10-01 19:08:51 +0200
committerBjörn Jacke <bj@sernet.de>2009-10-01 19:27:37 +0200
commit0265891cfccc6b5a070f8259914c7ab38f8bbcbf (patch)
tree287205c371a5ff6ead9a1613ca7a3b177b31b9da /source3/configure.in
parente9616e4c6d9cee6e80dd970e87a83517ab0de413 (diff)
downloadsamba-0265891cfccc6b5a070f8259914c7ab38f8bbcbf.tar.gz
samba-0265891cfccc6b5a070f8259914c7ab38f8bbcbf.tar.bz2
samba-0265891cfccc6b5a070f8259914c7ab38f8bbcbf.zip
s3:configure: don't throw away PRINT_LIBS
PRINT_LIBS might have been set before intentionally, so don't thow it away.
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 249a5accad..93de38dcc8 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