diff options
author | Timo Sirainen <cras@irssi.org> | 2001-07-14 19:16:34 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-07-14 19:16:34 +0000 |
commit | 1446b35e9e9ed367aea428b62027f8c928c07e9b (patch) | |
tree | c6fad16896d8ffe8145b3784f65c95fe6cd8ca1b /configure.in | |
parent | 67717c5224e92fc9f03d4fabcd46f415783252d7 (diff) | |
download | irssi-1446b35e9e9ed367aea428b62027f8c928c07e9b.zip |
if -z -> if test -z ..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1620 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
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) |