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

2005-01-15  Tor Lillqvist  <tml@iki.fi>

	* configure.in: sh portability fix. Use "test" and not [.
	(#163144, Robert Ögren)
This commit is contained in:
Tor Lillqvist 2005-01-15 22:40:16 +00:00 committed by Tor Lillqvist
parent 0e88a9b64f
commit 68bf100001
5 changed files with 21 additions and 1 deletions

View 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> 2005-01-13 Matthias Clasen <mclasen@redhat.com>
* glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder, * glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder,

View 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> 2005-01-13 Matthias Clasen <mclasen@redhat.com>
* glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder, * glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder,

View 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> 2005-01-13 Matthias Clasen <mclasen@redhat.com>
* glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder, * glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder,

View 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> 2005-01-13 Matthias Clasen <mclasen@redhat.com>
* glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder, * glib/gqsort.c: Sync to glibc. (#133994, Morten Welinder,

View File

@ -170,7 +170,7 @@ AC_SUBST(TESTGMODULE_EXP)
if test "$glib_native_win32" = "yes"; then if test "$glib_native_win32" = "yes"; then
AC_CHECK_TOOL(NM, nm, no) 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.]) AC_MSG_ERROR([*** Could not find an implementation of nm in your PATH.])
fi fi
AC_CHECK_TOOL(RANLIB, ranlib, :) AC_CHECK_TOOL(RANLIB, ranlib, :)