[aarch64-port-dev ] Add missing --with-override-nashorn
Edward Nevill
ed at camswl.com
Wed Aug 7 07:28:30 PDT 2013
Hi,
The following patch adds the missing --with-override-nashorn to
configure.
All the other options are there (--with-override-hotspot, --with-override-jdk etc), just this one is missing.
This is causing problems for our CI loop.
Regards,
Ed.
--- CUT HERE ---
exporting patch:
# HG changeset patch
# User Edward Nevill ed at camswl.com
# Date 1375885009 -3600
# Node ID 276f43662fe277205c2497391247110796a3956d
# Parent 85dd3c10d826e89f2e67234bd99f87101d6eec64
Add missing --with-overide-nashorn
diff -r 85dd3c10d826 -r 276f43662fe2 common/autoconf/generated-configure.sh
--- a/common/autoconf/generated-configure.sh Fri Jul 26 15:49:11 2013 +0100
+++ b/common/autoconf/generated-configure.sh Wed Aug 07 15:16:49 2013 +0100
@@ -1006,6 +1006,7 @@
with_override_jaxws
with_override_hotspot
with_override_jdk
+with_override_nashorn
with_import_hotspot
with_msvcr_dll
with_dxsdk
@@ -1760,6 +1761,7 @@
--with-override-jaxws use this jaxws dir for the build
--with-override-hotspot use this hotspot dir for the build
--with-override-jdk use this jdk dir for the build
+ --with-override-nashorn use this nashorn dir for the build
--with-import-hotspot import hotspot binaries from this jdk image or
hotspot build dist dir instead of building from
source
@@ -15991,6 +15993,11 @@
withval=$with_override_jdk;
fi
+# Check whether --with-override-nashorn was given.
+if test "${with_override_nashorn+set}" = set; then :
+ withval=$with_override_nashorn;
+fi
+
if test "x$with_override_langtools" != x; then
CURDIR="$PWD"
diff -r 85dd3c10d826 -r 276f43662fe2 common/autoconf/source-dirs.m4
--- a/common/autoconf/source-dirs.m4 Fri Jul 26 15:49:11 2013 +0100
+++ b/common/autoconf/source-dirs.m4 Wed Aug 07 15:16:49 2013 +0100
@@ -180,6 +180,9 @@
AC_ARG_WITH(override-jdk, [AS_HELP_STRING([--with-override-jdk],
[use this jdk dir for the build])])
+AC_ARG_WITH(override-nashorn, [AS_HELP_STRING([--with-override-nashorn],
+ [use this nashorn dir for the build])])
+
if test "x$with_override_langtools" != x; then
CURDIR="$PWD"
cd "$with_override_langtools"
--- CUT HERE ---
More information about the aarch64-port-dev
mailing list