From 1446b35e9e9ed367aea428b62027f8c928c07e9b Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sat, 14 Jul 2001 19:16:34 +0000 Subject: [PATCH] if -z -> if test -z .. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1620 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 8489fa63..e8331d67 100644 --- a/configure.in +++ b/configure.in @@ -286,7 +286,7 @@ AC_CHECK_GLIBDIR if test -z "$GLIB_DIR"; then AM_PATH_GLIB(1.2.0,,, gmodule) - if -z "$GLIB_LIBS"; then + if test -z "$GLIB_LIBS"; then echo "*** trying without -lgmodule" glib_config_args= AM_PATH_GLIB(1.2.0)