[Libreoffice-commits] .: 2 commits - configure.in
Thomas Klausner
tklausner at kemper.freedesktop.org
Sun Jan 22 03:29:12 PST 2012
configure.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 7afa76599cf0c9256e2dc85709f8cb2f1ac76282
Merge: 1684f1c... 799f2de...
Author: Thomas Klausner <wiz at NetBSD.org>
Date: Sun Jan 22 12:29:04 2012 +0100
Merge branch 'master' of ssh://git.freedesktop.org/git/libreoffice/core
commit 1684f1cb1a7ca155e613d3da4e2c168e9618e62a
Author: Thomas Klausner <wiz at NetBSD.org>
Date: Sun Jan 22 12:28:08 2012 +0100
Use more portable `=' comparison operator instead of `=='.
diff --git a/configure.in b/configure.in
index 3be6798..84beec3 100644
--- a/configure.in
+++ b/configure.in
@@ -9696,7 +9696,7 @@ dnl this should be unified into using only one version for both
AC_MSG_CHECKING([whether to use the system libjpeg])
-if test "$SYSTEM_JPEG" == "YES"; then
+if test "$SYSTEM_JPEG" = "YES"; then
SYSTEM_LIBJPEG=YES
AC_MSG_RESULT([yes])
else
More information about the Libreoffice-commits
mailing list