aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-10-30 22:06:07 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-10-30 22:06:07 +0000
commit576ec1e750a2ec66601fc2f951b70e4953a55e5e (patch)
treec87b8d0621385a86f19263bb8c18e0e94a70b464 /configure.in
parentbbf26f66c40fd6c80a32845ddfdf6be01643ee14 (diff)
Wrap "x$POD2MAN" in quotes, so if there are spaces in the pathname, the
configure script doesn't fail. (The Makefile will probably fail, but that's another matter.) If "$POD2MAN" is empty, it could mean that pod2man is installed but the user's path doesn't include the directory in which it's installed; fix up the error message. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8839 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 03d4274ffb..6f0119c084 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.228 2003/10/30 20:30:19 guy Exp $
+# $Id: configure.in,v 1.229 2003/10/30 22:06:07 guy Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
@@ -31,12 +31,12 @@ AC_PROG_YACC
AM_PROG_LEX
AC_PATH_PROG(PERL, perl)
AC_PATH_PROG(POD2MAN, pod2man)
-if test x$POD2MAN = x
+if test "x$POD2MAN" = x
then
#
# The alternative is not to build the man pages....
#
- AC_MSG_ERROR(pod2man is not present on this system)
+ AC_MSG_ERROR(I couldn't find pod2man; make sure it's installed and in your path)
fi
AC_PATH_PROG(LEX, flex)
AC_PATH_PROG(PYTHON, python)