[libsoup] configure.ac: add some missing quotes
- From: Dan Winship <danw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libsoup] configure.ac: add some missing quotes
- Date: Sun, 11 Nov 2012 00:37:58 +0000 (UTC)
commit f605541916587bac0888203a4ccff0173dec5835
Author: Dan Winship <danw gnome org>
Date: Sat Nov 10 19:36:04 2012 -0500
configure.ac: add some missing quotes
to fix error messages when apache wasn't installed
configure.ac | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 4a8df37..48ff401 100644
--- a/configure.ac
+++ b/configure.ac
@@ -289,9 +289,9 @@ else
MISSING_REGRESSION_TEST_PACKAGES="$MISSING_REGRESSION_TEST_PACKAGES mod_ssl"
fi
fi
-AM_CONDITIONAL(HAVE_APACHE, test $have_apache = 1)
-AM_CONDITIONAL(HAVE_APACHE_2_2, test $apache_version = 2.2)
-AM_CONDITIONAL(HAVE_APACHE_2_4, test $apache_version = 2.4)
+AM_CONDITIONAL(HAVE_APACHE, test "$have_apache" = 1)
+AM_CONDITIONAL(HAVE_APACHE_2_2, test "$apache_version" = 2.2)
+AM_CONDITIONAL(HAVE_APACHE_2_4, test "$apache_version" = 2.4)
if test "$have_apache" = 1; then
AC_CHECK_PROGS(PHP, php php5)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]