]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
== is a bashism, stick with POSIX shell in config scripts.
authorMichael R Sweet <msweet@msweet.org>
Sun, 7 Mar 2021 00:43:14 +0000 (19:43 -0500)
committerMichael R Sweet <msweet@msweet.org>
Sun, 7 Mar 2021 00:43:14 +0000 (19:43 -0500)
config-scripts/cups-snap.m4
configure

index c5332cda34109c027389c1bad4de13ede2ca4cc5..142ce6cea55546ee2ca940940b21c4e4865e7871 100644 (file)
@@ -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"
 ])
 
index 67807d18ff58f688fa7ff1ae73a961500dd708da..02bbd2b107154f2f9398fa7ac645e752d3e6cc66 100755 (executable)
--- 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"