pkgsrc-ng/devel/libmtp/patches/patch-configure
2016-01-21 23:41:46 +01:00

16 lines
474 B
Plaintext

$NetBSD: patch-configure,v 1.2 2015/05/02 10:43:29 ryoon Exp $
fix == in test
--- configure.orig 2015-04-13 18:44:18.000000000 +0000
+++ configure
@@ -14558,7 +14558,7 @@ fi
# (No need to use AC_SUBST on this default substituted environment variable.)
# Only add these additional CFLAGS if we are using GCC. Other C compilers may
# not support them.
-if test x"$GCC" == "xyes" ; then
+if test x"$GCC" = "xyes" ; then
CFLAGS="$CFLAGS -Wall -Wmissing-prototypes"
fi