[gimp/soc-2010-cage] Bug 622196 - Unportable test(1) construct in configure script
- From: Michael Muré <mmure src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/soc-2010-cage] Bug 622196 - Unportable test(1) construct in configure script
- Date: Wed, 30 Jun 2010 22:12:04 +0000 (UTC)
commit 06fcbcf4908ae2fb32351e36dc6429ad79314062
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.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index cf1af56..28231ae 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1303,7 +1303,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]