From a44d86e0079e4a218812cbec2767b5e91cad6633 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 21 May 2001 23:03:18 +0000 Subject: [PATCH] don't use if [ since it doesn't work, use if test.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1508 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 849a2efe..168e1c18 100644 --- a/configure.in +++ b/configure.in @@ -324,10 +324,10 @@ if test "x$GLIB_DIR" = "x"; then glib_file=glib-1.2.10.tar.gz dlcmd= - if [ "x`ncftpget 2>/dev/null|grep -i ncftp`" != "x" ]; then + if test "x`ncftpget 2>/dev/null|grep -i ncftp`" != "x"; then dlcmd="ncftpget ftp://ftp.gtk.org/pub/gtk/v1.2/$glib_file" fi - if [ "x`wget 2>/dev/null|grep -i wget`" != "x" ]; then + if test "x`wget 2>/dev/null|grep -i wget`" != "x"; then dlcmd="wget http://irssi.org/files/$glib_file" fi if test "x$dlcmd" != "x"; then