diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-08 13:14:05 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-08 13:14:05 +0100 |
commit | 9ad3ae4e71c8f80466638be670285071a6e08139 (patch) | |
tree | ff817f1016a208ddeb1319c0e574eee09b8074de | |
parent | 5af74774d0e9130d291094988c98f3e9544edfa8 (diff) | |
parent | b4e36f43ec5ef68b05679a21c3a67ccc811034eb (diff) | |
download | ayatana-indicator-printers-9ad3ae4e71c8f80466638be670285071a6e08139.tar.gz ayatana-indicator-printers-9ad3ae4e71c8f80466638be670285071a6e08139.tar.bz2 ayatana-indicator-printers-9ad3ae4e71c8f80466638be670285071a6e08139.zip |
Merge branch 'z3ntu-bashism'
Attributes GH PR #9: https://github.com/AyatanaIndicators/ayatana-indicator-printers/pull/9
-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" |