diff mbox

Add missing --with-override-nashorn

Message ID 1375885710.3993.55.camel@fleetfoot.lan
State Accepted
Headers show

Commit Message

enevill2 Aug. 7, 2013, 2:28 p.m. UTC
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@camswl.com
# Date 1375885009 -3600
# Node ID 276f43662fe277205c2497391247110796a3956d
# Parent  85dd3c10d826e89f2e67234bd99f87101d6eec64
Add missing --with-overide-nashorn

Comments

Andrew Haley Aug. 7, 2013, 2:34 p.m. UTC | #1
On 08/07/2013 03:28 PM, Edward Nevill wrote:
> 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.

OK,

Andrew.
diff mbox

Patch

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 ---