[ooo-build-commit] .: configure.in
Thomas Klausner
tklausner at kemper.freedesktop.org
Sat Oct 2 10:58:54 PDT 2010
configure.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 888dae9f05ee62fc1da32dba45e7703c73171fae
Author: Thomas Klausner <wiz at NetBSD.org>
Date: Sat Oct 2 19:57:58 2010 +0200
Replace unportable test(1) == with =
The double == is only support by bash, not even by test(1) from
coreutils.
diff --git a/configure.in b/configure.in
index 30f667a..566f5f5 100644
--- a/configure.in
+++ b/configure.in
@@ -5157,7 +5157,7 @@ dnl ===================================================================
dnl Check for system Mesa
dnl ===================================================================
AC_MSG_CHECKING([which Mesa headers to use])
-if test "$with_system_mesa_headers" == "no"; then
+if test "$with_system_mesa_headers" = "no"; then
AC_MSG_RESULT([internal])
SYSTEM_MESA_HEADERS=NO
BUILD_TYPE="$BUILD_TYPE MESA"
@@ -7217,7 +7217,7 @@ rm -f conftest* core core.* *.core
OOO_JUNIT_JAR=
if test "$SOLAR_JAVA" != "" && test "$with_junit" != "no"; then
AC_MSG_CHECKING([for JUnit 4])
- if test "$with_junit" == "yes"; then
+ if test "$with_junit" = "yes"; then
if test -e /usr/share/java/junit4.jar; then
OOO_JUNIT_JAR=/usr/share/java/junit4.jar
else
More information about the ooo-build-commit
mailing list