summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-07-14 19:34:28 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-07-14 19:34:28 +0000
commite2da644c76b8b33a53c24e0193694bea88088439 (patch)
treeda29769052127194fdd6a70365f5ed180438058c /configure.in
parentaf7eb505a885e780caf08c2614bebf39af1b4873 (diff)
downloadirssi-e2da644c76b8b33a53c24e0193694bea88088439.zip
yet another typo, "-z -> -z "
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1623 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index e8331d67..fd327b44 100644
--- a/configure.in
+++ b/configure.in
@@ -438,7 +438,7 @@ if test "$want_perl" != "no"; then
AC_PATH_PROG(perlpath, perl)
AC_MSG_CHECKING(for working Perl support)
- if test "-z $perlpath"; then
+ if test -z "$perlpath"; then
perl_check_error="perl binary not found"
else
PERL_CFLAGS=`$perlpath -MExtUtils::Embed -e ccopts 2>/dev/null`