summaryrefslogtreecommitdiff
path: root/print/cups-filters/patches/patch-configure
blob: be754e741a9c4e22e4753cf98fc6358cb96f0f46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-configure,v 1.2 2016/12/21 22:38:07 wiz Exp $

Fix unportable test(1) operator.

--- configure.orig	2016-12-17 23:41:49.000000000 +0000
+++ configure
@@ -16923,7 +16923,7 @@ case x$with_apple_raster_filter in #(
     as_fn_error $? "Unknown value of with-apple-raster-filter provided: $with_apple_raster_filter" "$LINENO" 5
  ;;
 esac
- if test "x$APPLE_RASTER_FILTER" == "xurftopdf"; then
+ if test "x$APPLE_RASTER_FILTER" = "xurftopdf"; then
   ENABLE_URFTOPDF_TRUE=
   ENABLE_URFTOPDF_FALSE='#'
 else