From 68bf10000143d0d61fe2ae1f7b02557554b23ad9 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sat, 15 Jan 2005 22:40:16 +0000 Subject: [PATCH] =?utf8?q?sh=20portability=20fix.=20Use=20"test"=20and=20n?= =?utf8?q?ot=20[.=20(#163144,=20Robert=20=C3=96gren)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 2005-01-15 Tor Lillqvist * configure.in: sh portability fix. Use "test" and not [. (#163144, Robert Ögren) --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-12 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ configure.in | 2 +- 5 files changed, 21 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3ab24ca3d..bfe450700 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-01-15 Tor Lillqvist + + * configure.in: sh portability fix. Use "test" and not [. + (#163144, Robert Ögren) + 2005-01-13 Matthias Clasen * glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder, diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 3ab24ca3d..bfe450700 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2005-01-15 Tor Lillqvist + + * configure.in: sh portability fix. Use "test" and not [. + (#163144, Robert Ögren) + 2005-01-13 Matthias Clasen * glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder, diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 3ab24ca3d..bfe450700 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +2005-01-15 Tor Lillqvist + + * configure.in: sh portability fix. Use "test" and not [. + (#163144, Robert Ögren) + 2005-01-13 Matthias Clasen * glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder, diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 3ab24ca3d..bfe450700 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2005-01-15 Tor Lillqvist + + * configure.in: sh portability fix. Use "test" and not [. + (#163144, Robert Ögren) + 2005-01-13 Matthias Clasen * glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder, diff --git a/configure.in b/configure.in index fef2a13a5..d76f9eaa6 100644 --- a/configure.in +++ b/configure.in @@ -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, :) -- 2.34.1