mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-06 07:58:44 +02: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:
committed by
Tor Lillqvist
parent
0e88a9b64f
commit
68bf100001
@@ -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, :)
|
||||
|
Reference in New Issue
Block a user