changeset in /hg/icedtea6: 2008-07-24 Matthias Klose <doko at ubu...
doko at ubuntu.com
doko at ubuntu.com
Thu Jul 24 09:11:42 PDT 2008
changeset 44dbed9c8091 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=44dbed9c8091
description:
2008-07-24 Matthias Klose <doko at ubuntu.com>
* configure.ac: Fix bashisms.
diffstat:
2 files changed, 13 insertions(+), 9 deletions(-)
ChangeLog | 4 ++++
configure.ac | 18 +++++++++---------
diffs (93 lines):
diff -r 57adcf5f8d53 -r 44dbed9c8091 ChangeLog
--- a/ChangeLog Thu Jul 24 16:56:12 2008 +0200
+++ b/ChangeLog Thu Jul 24 18:11:19 2008 +0200
@@ -1,3 +1,7 @@ 2008-07-24 Matthias Klose <doko at ubuntu
+2008-07-24 Matthias Klose <doko at ubuntu.com>
+
+ * configure.ac: Fix bashisms.
+
2008-07-24 Matthias Klose <doko at ubuntu.com>
* Makefile.am (stamps/bootstrap-directory-ecj.stamp): Fix typo.
diff -r 57adcf5f8d53 -r 44dbed9c8091 configure.ac
--- a/configure.ac Thu Jul 24 16:56:12 2008 +0200
+++ b/configure.ac Thu Jul 24 18:11:19 2008 +0200
@@ -36,7 +36,7 @@ AC_ARG_WITH([gcj-home],
[gcj home directory \
(default is /usr/lib/jvm/java-gcj)])],
[
- if test "x${withval}" == x
+ if test "x${withval}" = x
then
SYSTEM_GCJ_DIR=/usr/lib/jvm/java-gcj
else
@@ -53,7 +53,7 @@ AC_ARG_WITH([openjdk-home],
[OpenJDK home directory \
(default is /usr/lib/jvm/java-openjdk)])],
[
- if test "x${withval}" == x
+ if test "x${withval}" = x
then
SYSTEM_OPENJDK_DIR=/usr/lib/jvm/java-openjdk
else
@@ -70,7 +70,7 @@ AC_ARG_WITH([icedtea-home],
[IcedTea home directory \
(default is /usr/lib/jvm/java-icedtea)])],
[
- if test "x${withval}" == x
+ if test "x${withval}" = x
then
SYSTEM_ICEDTEA_DIR=/usr/lib/jvm/java-icedtea
else
@@ -86,7 +86,7 @@ AC_ARG_WITH([ant-home],
[AS_HELP_STRING([--with-ant-home],
[Ant home directory (default is /usr/share/ant)])],
[
- if test "x${withval}" == x
+ if test "x${withval}" = x
then
SYSTEM_ANT_DIR=/usr/share/ant
else
@@ -130,7 +130,7 @@ AC_ARG_WITH([icedtea],
[
with_icedtea=false
])
-AM_CONDITIONAL(WITH_ICEDTEA, test "${with_icedtea}" == true)
+AM_CONDITIONAL(WITH_ICEDTEA, test "${with_icedtea}" = true)
AC_ARG_WITH([openjdk],
[AS_HELP_STRING([--with-openjdk],
@@ -146,13 +146,13 @@ AC_ARG_WITH([openjdk],
[
with_openjdk=false
])
-AM_CONDITIONAL(WITH_OPENJDK, test "${with_openjdk}" == true)
+AM_CONDITIONAL(WITH_OPENJDK, test "${with_openjdk}" = true)
AC_ARG_WITH([parallel-jobs],
[AS_HELP_STRING([--with-parallel-jobs],
[build IcedTea using the specified number of parallel jobs])],
[
- if test "x${withval}" == x
+ if test "x${withval}" = x
then
PARALLEL_JOBS=2
else
@@ -165,7 +165,7 @@ AC_SUBST(PARALLEL_JOBS)
AC_SUBST(PARALLEL_JOBS)
SET_ARCH_DIRS
-if test "${with_openjdk}" == true
+if test "${with_openjdk}" = true
then
JAVA=$SYSTEM_OPENJDK_DIR/bin/java
AC_SUBST(JAVA)
@@ -179,7 +179,7 @@ then
AC_SUBST(RMIC)
AM_CONDITIONAL(GCC_OLD, test x != x)
else
-if test "${with_icedtea}" == true
+if test "${with_icedtea}" = true
then
JAVA=$SYSTEM_ICEDTEA_DIR/bin/java
AC_SUBST(JAVA)
More information about the distro-pkg-dev
mailing list