aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-12-08 13:14:05 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-12-08 13:14:05 +0100
commit9ad3ae4e71c8f80466638be670285071a6e08139 (patch)
treeff817f1016a208ddeb1319c0e574eee09b8074de /configure.ac
parent5af74774d0e9130d291094988c98f3e9544edfa8 (diff)
parentb4e36f43ec5ef68b05679a21c3a67ccc811034eb (diff)
downloadayatana-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
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
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"