From: Michael R Sweet Date: Sun, 7 Mar 2021 00:43:14 +0000 (-0500) Subject: == is a bashism, stick with POSIX shell in config scripts. X-Git-Tag: v2.4b1~213 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4bba983c2d36d92a2ac9a7c793bbf5522300b91;p=thirdparty%2Fcups.git == is a bashism, stick with POSIX shell in config scripts. --- diff --git a/config-scripts/cups-snap.m4 b/config-scripts/cups-snap.m4 index c5332cda34..142ce6cea5 100644 --- a/config-scripts/cups-snap.m4 +++ b/config-scripts/cups-snap.m4 @@ -34,7 +34,7 @@ dnl jobs, ...) if they plug the "cups-control" interface, so dnl --enable-snapped-cupsd implies --enable-snapped-clients. The difference is dnl only the method how to determine whether a client Snap is confined and plugs dnl "cups-control". -AS_IF([test x$enable_snapped_cupsd == xyes], [ +AS_IF([test x$enable_snapped_cupsd = xyes], [ enable_snapped_clients="yes" ]) diff --git a/configure b/configure index 67807d18ff..02bbd2b107 100755 --- a/configure +++ b/configure @@ -10737,7 +10737,7 @@ SNAPDGLIBLIBS="" ENABLE_SNAPPED_CUPSD="NO" ENABLE_SNAPPED_CLIENTS="NO" -if test x$enable_snapped_cupsd == xyes +if test x$enable_snapped_cupsd = xyes then : enable_snapped_clients="yes"