diff options
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 0986f8c..8919cfd 100644 --- a/configure.ac +++ b/configure.ac @@ -50,8 +50,8 @@ if test "x$CUPS_CONFIG" = "xno"; then AC_MSG_ERROR([could not find cups-config]) fi AC_CHECK_HEADER(cups/cups.h,,AC_MSG_ERROR([could not find cups.h])) -CUPS_CFLAGS+=`$CUPS_CONFIG --cflags` -CUPS_LIBS+=`$CUPS_CONFIG --libs` +CUPS_CFLAGS=`$CUPS_CONFIG --cflags` +CUPS_LIBS=`$CUPS_CONFIG --libs` SERVICE_CFLAGS="$SERVICE_CFLAGS $CUPS_CFLAGS" SERVICE_LIBS="$SERVICE_LIBS $CUPS_LIBS" |