]> rtime.felk.cvut.cz Git - orte.git/commitdiff
Fix other unquoted variables in configure
authorMichal Sojka <sojkam1@fel.cvut.cz>
Mon, 16 Sep 2013 23:03:05 +0000 (01:03 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Mon, 16 Sep 2013 23:10:49 +0000 (01:10 +0200)
configure.ac

index 9f8458ca5aab2e8af01c7ab5a4b223a1d2a2d742..9dd31d1528663be9bad5cfb3267a1d76fcbaba27 100644 (file)
@@ -106,7 +106,7 @@ else
   if test ${USE_RTAI} == 'yes' ; then
     CFLAGS="$CFLAGS $RTAI_CFLAGS $LINUX_CFLAGS"
   else
-    if test -n ${CONFIG_ORTE_KERNEL} ; then
+    if test -n "${CONFIG_ORTE_KERNEL}" ; then
       CFLAGS="$CFLAGS $LINUX_CFLAGS"
     fi
   fi
@@ -129,7 +129,7 @@ AM_JORTE
 
 ###############################
 # Checks for libraries and init libtools
-if test -z ${CONFIG_ORTE_RT} ; then
+if test -z "${CONFIG_ORTE_RT}" ; then
   AC_CHECK_LIB([ws2_32], [main])
   AC_CHECK_LIB([socket], [main])
   AC_CHECK_LIB([nsl], [main])
@@ -187,7 +187,7 @@ if test ${WIN} == 'yes' ; then
     AC_CHECK_FUNCS([gettimeofday])
 fi
 # kernel
-if test ${CONFIG_ORTE_KERNEL} == 'yes' ; then
+if test "${CONFIG_ORTE_KERNEL}" == 'yes' ; then
     AC_CHECK_HEADERS([\
     asm/byteorder.h linux/ctype.h linux/string.h \
     linux/module.h linux/if.h linux/socket.h \
@@ -320,7 +320,7 @@ AC_C_INLINE
 ###############################
 # Checks for library functions.
 AC_PROG_GCC_TRADITIONAL
-if test -z ${CONFIG_ORTE_RT} ; then
+if test -z "${CONFIG_ORTE_RT}" ; then
 AC_CHECK_FUNCS([gethostbyname getopt_long])
 fi