sh portability fix. Use "test" and not [. (#163144, Robert Ögren)
authorTor Lillqvist <tml@iki.fi>
Sat, 15 Jan 2005 22:40:16 +0000 (22:40 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Sat, 15 Jan 2005 22:40:16 +0000 (22:40 +0000)
2005-01-15  Tor Lillqvist  <tml@iki.fi>

* configure.in: sh portability fix. Use "test" and not [.
(#163144, Robert Ögren)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-8
configure.in

index 3ab24ca3d318cb06dc00c2632ec68a116e2b2295..bfe4507004bba5bf5191447965a0c05b15fc41ab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-15  Tor Lillqvist  <tlillqvist@novell.com>
+
+       * configure.in: sh portability fix. Use "test" and not [.
+       (#163144, Robert Ögren)
+
 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gqsort.c: Sync to glibc.  (#133994, Morten Welinder, 
index 3ab24ca3d318cb06dc00c2632ec68a116e2b2295..bfe4507004bba5bf5191447965a0c05b15fc41ab 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-15  Tor Lillqvist  <tlillqvist@novell.com>
+
+       * configure.in: sh portability fix. Use "test" and not [.
+       (#163144, Robert Ögren)
+
 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gqsort.c: Sync to glibc.  (#133994, Morten Welinder, 
index 3ab24ca3d318cb06dc00c2632ec68a116e2b2295..bfe4507004bba5bf5191447965a0c05b15fc41ab 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-15  Tor Lillqvist  <tlillqvist@novell.com>
+
+       * configure.in: sh portability fix. Use "test" and not [.
+       (#163144, Robert Ögren)
+
 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gqsort.c: Sync to glibc.  (#133994, Morten Welinder, 
index 3ab24ca3d318cb06dc00c2632ec68a116e2b2295..bfe4507004bba5bf5191447965a0c05b15fc41ab 100644 (file)
@@ -1,3 +1,8 @@
+2005-01-15  Tor Lillqvist  <tlillqvist@novell.com>
+
+       * configure.in: sh portability fix. Use "test" and not [.
+       (#163144, Robert Ögren)
+
 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/gqsort.c: Sync to glibc.  (#133994, Morten Welinder, 
index fef2a13a57bf69db96a21c80946aff37e85b4c91..d76f9eaa6f627c4890d0ff424af0a79d0f6ea5c2 100644 (file)
@@ -170,7 +170,7 @@ AC_SUBST(TESTGMODULE_EXP)
 
 if test "$glib_native_win32" = "yes"; then
   AC_CHECK_TOOL(NM, nm, no)
-  if [ "$NM" = no ]; then
+  if test "$NM" = no; then
     AC_MSG_ERROR([*** Could not find an implementation of nm in your PATH.])
   fi
   AC_CHECK_TOOL(RANLIB, ranlib, :)