aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-03-20 14:01:06 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-03-20 14:01:06 +0800
commit4380849ce4f77862a9431970cb61e6b827646092 (patch)
treefd51e37ed947cec6fce5788a1436c0a6cd63bdb7
parentb125d06dc268441611b49c5e32dee81cd840f9a2 (diff)
downloadgsoc2013-evolution-4380849ce4f77862a9431970cb61e6b827646092.tar
gsoc2013-evolution-4380849ce4f77862a9431970cb61e6b827646092.tar.gz
gsoc2013-evolution-4380849ce4f77862a9431970cb61e6b827646092.tar.bz2
gsoc2013-evolution-4380849ce4f77862a9431970cb61e6b827646092.tar.lz
gsoc2013-evolution-4380849ce4f77862a9431970cb61e6b827646092.tar.xz
gsoc2013-evolution-4380849ce4f77862a9431970cb61e6b827646092.tar.zst
gsoc2013-evolution-4380849ce4f77862a9431970cb61e6b827646092.zip
Fix ettore's fix ;-)
2001-03-19 Jeffrey Stedfast <fejj@ximian.com> * configure.in: Fix ettore's fix ;-) svn path=/trunk/; revision=8842
-rw-r--r--ChangeLog4
-rw-r--r--configure.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9367933f1c..60196e5dd8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-03-19 Jeffrey Stedfast <fejj@ximian.com>
+
+ * configure.in: Fix ettore's fix ;-)
+
2001-03-19 Christopher James Lahey <clahey@ximian.com>
* configure.in: Bumped gal requirement to 0.5.99.8.
diff --git a/configure.in b/configure.in
index 0355ae4546..84c19354c4 100644
--- a/configure.in
+++ b/configure.in
@@ -609,7 +609,7 @@ if test "x${with_nspr_includes}" != "xno"; then
HEADERS="$with_nspr_includes/nspr.h $with_nspr_includes/prio.h"
AC_CHECK_FILES($HEADERS, [ moz_nspr_includes="yes" ])
- if test "x{$moz_nspr_includes}" != "xno" -a test "x{$moz_nspr_includes}" != "x" ; then
+ if test "x{$moz_nspr_includes}" != "xno" -a "x{$moz_nspr_includes}" != "x" ; then
have_nspr_includes="yes"
NSPR_CFLAGS="-I$with_nspr_includes"
fi
@@ -656,7 +656,7 @@ if test "x${with_nss_includes}" != "xno" -a "x${have_nspr_libs}" != "xno"; then
HEADERS="$with_nss_includes/nss.h $with_nss_includes/ssl.h $with_nss_includes/smime.h"
AC_CHECK_FILES($HEADERS, [ moz_nspr_includes="yes" ])
- if test "x{$moz_nss_includes}" != "xno" -a test "x{$moz_nss_includes}" != "x"; then
+ if test "x{$moz_nss_includes}" != "xno" -a "x{$moz_nss_includes}" != "x"; then
have_nss_includes="yes"
NSS_CFLAGS="-I$with_nss_includes"
else