aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-04-11 00:19:09 +1000
committerGravatar axel <axel@liljencrantz.se>2006-04-11 00:19:09 +1000
commit52851a3ba4521f878bbabf74e0dad834b2052a18 (patch)
tree7634eda6afbf6a3e0c2797232c065c6a88954309 /configure.ac
parentb1bf115fa20605995e9b8efa181ed03b043fefaa (diff)
Quote Doxygen test in configure script to remove warning - thanks to Ray Hammond for the report and the fix
darcs-hash:20060410141909-ac50b-f310b7e326ce28ae8a3bbc1a3c1d247511f3d860.gz
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 71a796c0..4c578a8b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -85,7 +85,7 @@ AC_PROG_INSTALL
# Check for doxygen, which is needed to build
AC_CHECK_PROG( has_doxygen, [doxygen], "true")
-if ! test $has_doxygen = "true"; then
+if ! test "$has_doxygen" = "true"; then
AC_MSG_ERROR( [cannot find the Doxygen program in your path.
This program is needed to build fish.
Please install it and try again.])