[libsoup/gnome-2-26] Use POSIXly-correct "test a = b" rather than bash "test a == b"
- From: Dan Winship <danw src gnome org>
- To: svn-commits-list gnome org
- Subject: [libsoup/gnome-2-26] Use POSIXly-correct "test a = b" rather than bash "test a == b"
- Date: Mon, 29 Jun 2009 22:47:26 +0000 (UTC)
commit 40de647c840f33435918ec7bc8b28c5b3332cc66
Author: Dan Winship <danw gnome org>
Date: Mon Jun 1 21:26:37 2009 -0400
Use POSIXly-correct "test a = b" rather than bash "test a == b"
Stupid bash. http://bugzilla.gnome.org/show_bug.cgi?id=583911
configure.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/configure.in b/configure.in
index 488f332..6058a15 100644
--- a/configure.in
+++ b/configure.in
@@ -329,7 +329,7 @@ if test "$APACHE_HTTPD" != "no" -a -n "$APACHE_MODULE_DIR" -a -n "$APACHE_SSL_MO
fi
else
have_apache=0
- if test "$APACHE_HTTPD" == "no" -o -z "$APACHE_MODULE_DIR"; then
+ if test "$APACHE_HTTPD" = "no" -o -z "$APACHE_MODULE_DIR"; then
MISSING_REGRESSION_TEST_PACKAGES="$MISSING_REGRESSION_TEST_PACKAGES apache"
else
MISSING_REGRESSION_TEST_PACKAGES="$MISSING_REGRESSION_TEST_PACKAGES mod_ssl"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]