From 52851a3ba4521f878bbabf74e0dad834b2052a18 Mon Sep 17 00:00:00 2001 From: axel Date: Tue, 11 Apr 2006 00:19:09 +1000 Subject: [PATCH] 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 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 71a796c0b..4c578a8b7 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.])