]> granicus.if.org Git - linux-pam/commitdiff
Fixed missing quotes in configure script
authorMarek Černocký <marek@manet.cz>
Sun, 22 Sep 2019 06:57:36 +0000 (08:57 +0200)
committerTomáš Mráz <t8m@users.noreply.github.com>
Mon, 23 Sep 2019 09:09:32 +0000 (11:09 +0200)
configure.ac

index 62b98c73451d301386d252473618195d4b5ae80e..4870f13128f9ab35cc4d0ad71e15dd58d6ed59de 100644 (file)
@@ -80,7 +80,7 @@ dnl Largefile support
 AC_SYS_LARGEFILE
 
 dnl icc claims to be GCC compatible, but use other flags for warnings
-if eval "test x$GCC = xyes -a $CC != icc"; then
+if eval 'test "x$GCC" = "xyes" -a "$CC" != "icc"'; then
   for flag in \
       -W \
       -Wall \
@@ -100,7 +100,7 @@ if eval "test x$GCC = xyes -a $CC != icc"; then
   done
 fi
 dnl icc has special warning flags
-if eval "test x$CC = xicc"; then
+if eval 'test "x$CC" = "xicc"'; then
   for flag in \
       -Wall \
       -Wmissing-prototypes \