You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -16102,6 +16104,10 @@ if test "x$with_add_source_root" != x; then
16102
16104
test -f $with_add_source_root/hotspot/make/Makefile; then
16103
16105
as_fn_error $? "Your add source root seems to contain a full hotspot repo! An add source root should only contain additional sources." "$LINENO" 5
16104
16106
fi
16107
+
if test -f $with_add_source_root/nashorn/makefiles/Makefile || \
16108
+
test -f $with_add_source_root/nashorn/make/Makefile; then
16109
+
as_fn_error $? "Your add source root seems to contain a full nashorn repo! An add source root should only contain additional sources." "$LINENO" 5
16110
+
fi
16105
16111
if test -f $with_add_source_root/jdk/makefiles/Makefile || \
16106
16112
test -f $with_add_source_root/jdk/make/Makefile; then
16107
16113
as_fn_error $? "Your add source root seems to contain a full JDK repo! An add source root should only contain additional sources." "$LINENO" 5
@@ -16137,6 +16143,10 @@ if test "x$with_override_source_root" != x; then
16137
16143
test -f $with_override_source_root/hotspot/make/Makefile; then
16138
16144
as_fn_error $? "Your override source root seems to contain a full hotspot repo! An override source root should only contain sources that override." "$LINENO" 5
16139
16145
fi
16146
+
if test -f $with_override_source_root/nashorn/makefiles/Makefile || \
16147
+
test -f $with_override_source_root/nashorn/make/Makefile; then
16148
+
as_fn_error $? "Your override source root seems to contain a full nashorn repo! An override source root should only contain sources that override." "$LINENO" 5
16149
+
fi
16140
16150
if test -f $with_override_source_root/jdk/makefiles/Makefile || \
16141
16151
test -f $with_override_source_root/jdk/make/Makefile; then
16142
16152
as_fn_error $? "Your override source root seems to contain a full JDK repo! An override source root should only contain sources that override." "$LINENO" 5
@@ -16199,6 +16209,13 @@ fi
16199
16209
16200
16210
16201
16211
16212
+
# Check whether --with-override-nashorn was given.
16213
+
if test "${with_override_nashorn+set}" = set; then :
16214
+
withval=$with_override_nashorn;
16215
+
fi
16216
+
16217
+
16218
+
16202
16219
# Check whether --with-override-jdk was given.
16203
16220
if test "${with_override_jdk+set}" = set; then :
16204
16221
withval=$with_override_jdk;
@@ -16276,7 +16293,7 @@ if test "x$with_override_nashorn" != x; then
16276
16293
cd "$with_override_nashorn"
16277
16294
NASHORN_TOPDIR="`pwd`"
16278
16295
cd "$CURDIR"
16279
-
if ! test -f $NASHORN_TOPDIR/makefiles/BuildNashorn.gmk; then
16296
+
if ! test -f $NASHORN_TOPDIR/makefiles/Makefile; then
16280
16297
as_fn_error $? "You have to override nashorn with a full nashorn repo!" "$LINENO" 5
16281
16298
fi
16282
16299
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if nashorn should be overridden" >&5
0 commit comments