mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-28 22:44:59 -04:00
16 lines
474 B
Plaintext
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
|
|
|