]> git.ipfire.org Git - thirdparty/cups-filters.git/commitdiff
Replace '==' in configure.ac test with '=' 222/head
authorDavid Cantrell <david.l.cantrell@gmail.com>
Thu, 2 Apr 2020 15:23:48 +0000 (11:23 -0400)
committerDavid Cantrell <david.l.cantrell@gmail.com>
Thu, 2 Apr 2020 15:23:48 +0000 (11:23 -0400)
== is a bash-specific test operator.  Use = here for portability.

configure.ac

index 5e05334208b59d6b490babc7b4f56c2c202b88fa..598c9be677ab209c450598ff2f002bebfc06a16d 100644 (file)
@@ -144,7 +144,7 @@ AS_CASE([x$with_apple_raster_filter],
        [AC_MSG_ERROR([Unknown value of with-apple-raster-filter provided: $with_apple_raster_filter])]
 )
 AM_CONDITIONAL([ENABLE_URFTOPDF],
-              [test "x$APPLE_RASTER_FILTER" == "xurftopdf"])
+              [test "x$APPLE_RASTER_FILTER" = "xurftopdf"])
 AC_SUBST(APPLE_RASTER_FILTER)
 
 AC_DEFINE(PDFTOPDF, [], [Needed for pdftopdf filter compilation])