mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-22 20:26:17 +01:00
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:
parent
0e88a9b64f
commit
68bf100001
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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, :)
|
||||
|
Loading…
Reference in New Issue
Block a user