[gimp/gimp-2-6] Bug 622196 - Unportable test(1) construct in configure script
- From: Sven Neumann <neo src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gimp-2-6] Bug 622196 - Unportable test(1) construct in configure script
- Date: Sun, 20 Jun 2010 16:37:44 +0000 (UTC)
commit effc864b3b23195c0cf2bd9bf53cb568204a5910
Author: Sven Neumann <sven gimp org>
Date: Sun Jun 20 18:37:53 2010 +0200
Bug 622196 - Unportable test(1) construct in configure script
Use of '==' as comparison operator is a bashism.
(cherry picked from commit 9275404452e233e38c6cc438beaccab92278631f)
configure.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/configure.in b/configure.in
index 8348df3..0a2fb35 100644
--- a/configure.in
+++ b/configure.in
@@ -1278,7 +1278,7 @@ if test "x$with_print" != xno; then
enable_print="yes"
fi
-AM_CONDITIONAL(BUILD_PRINT, test "x$enable_print" == xyes)
+AM_CONDITIONAL(BUILD_PRINT, test "x$enable_print" = xyes)
######################
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]