An empty true branch of an `if' statement is not valid sh syntax. If
authorTom Tromey <tromey@cygnus.com>
Fri, 20 Mar 1998 06:24:33 +0000 (06:24 +0000)
committerTom Tromey <tromey@src.gnome.org>
Fri, 20 Mar 1998 06:24:33 +0000 (06:24 +0000)
Thu Mar 19 23:23:30 1998  Tom Tromey  <tromey@cygnus.com>

* gnome.m4: An empty true branch of an `if' statement is not valid
sh syntax.  If GNOME_INIT_HOOK argument $1 is empty, use ":"
instead.

svn path=/trunk/; revision=154

macros/ChangeLog
macros/gnome.m4

index d2e57f7..3e899bc 100644 (file)
@@ -1,3 +1,9 @@
+Thu Mar 19 23:23:30 1998  Tom Tromey  <tromey@cygnus.com>
+
+       * gnome.m4: An empty true branch of an `if' statement is not valid
+       sh syntax.  If GNOME_INIT_HOOK argument $1 is empty, use ":"
+       instead.
+
 1998-03-19  Miguel de Icaza  <miguel@nuclecu.unam.mx>
 
        * gnome.m4 (GNOME_INIT_HOOK): Provide a way to hook some code to
index 283745c..aa6165f 100644 (file)
@@ -37,7 +37,8 @@ AC_DEFUN([GNOME_INIT_HOOK],
        AC_ARG_WITH(gnome,
        [  --with-gnome            Specify prefix for GNOME files],[
        if test x$withval = xyes; then
-           $1
+           dnl Note that an empty true branch is not valid sh syntax.
+           ifelse([$1], [], :, [$1])
         else
            LDFLAGS="$LDFLAGS -L$withval/lib"
            CFLAGS="$CFLAGS -I$withval/include"
@@ -61,4 +62,4 @@ AC_DEFUN([GNOME_INIT_HOOK],
 
 AC_DEFUN([GNOME_INIT],[
        GNOME_INIT_HOOK([],fail)
-])
\ No newline at end of file
+])