From 0265891cfccc6b5a070f8259914c7ab38f8bbcbf Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Thu, 1 Oct 2009 19:08:51 +0200 Subject: s3:configure: don't throw away PRINT_LIBS PRINT_LIBS might have been set before intentionally, so don't thow it away. --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') 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 -- cgit