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
# Pickup additional source for a component from outside of the source root
28893
-
# or override source for a component.
28894
-
#
28895
28891
28896
28892
# Check whether --with-add-source-root was given.
28897
28893
if test "${with_add_source_root+set}" = set; then :
28898
-
withval=$with_add_source_root;
28894
+
withval=$with_add_source_root; { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Option --with-add-source-root is deprecated and will be ignored." >&5
28895
+
$as_echo "$as_me: WARNING: Option --with-add-source-root is deprecated and will be ignored." >&2;}
28899
28896
fi
28900
28897
28901
28898
28902
28899
28900
+
28903
28901
# Check whether --with-override-source-root was given.
28904
28902
if test "${with_override_source_root+set}" = set; then :
28905
-
withval=$with_override_source_root;
28903
+
withval=$with_override_source_root; { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Option --with-override-source-root is deprecated and will be ignored." >&5
28904
+
$as_echo "$as_me: WARNING: Option --with-override-source-root is deprecated and will be ignored." >&2;}
28906
28905
fi
28907
28906
28908
28907
28909
28908
28909
+
28910
28910
# Check whether --with-adds-and-overrides was given.
28911
28911
if test "${with_adds_and_overrides+set}" = set; then :
28912
-
withval=$with_adds_and_overrides;
28912
+
withval=$with_adds_and_overrides; { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Option --with-adds-and-overrides is deprecated and will be ignored." >&5
28913
+
$as_echo "$as_me: WARNING: Option --with-adds-and-overrides is deprecated and will be ignored." >&2;}
as_fn_error $? "Trying to use a non-existant add-source-root $with_add_source_root" "$LINENO" 5
28924
-
fi
28925
-
CURDIR="$PWD"
28926
-
cd "$with_add_source_root"
28927
-
ADD_SRC_ROOT="`pwd`"
28928
-
cd "$CURDIR"
28929
-
# Verify that the addon source root does not have any root makefiles.
28930
-
# If it does, then it is usually an error, prevent this.
28931
-
if test -f $with_add_source_root/langtools/make/Makefile; then
28932
-
as_fn_error $? "Your add source root seems to contain a full langtools repo! An add source root should only contain additional sources." "$LINENO" 5
28933
-
fi
28934
-
if test -f $with_add_source_root/corba/make/Makefile; then
28935
-
as_fn_error $? "Your add source root seems to contain a full corba repo! An add source root should only contain additional sources." "$LINENO" 5
28936
-
fi
28937
-
if test -f $with_add_source_root/jaxp/make/Makefile; then
28938
-
as_fn_error $? "Your add source root seems to contain a full jaxp repo! An add source root should only contain additional sources." "$LINENO" 5
28939
-
fi
28940
-
if test -f $with_add_source_root/jaxws/make/Makefile; then
28941
-
as_fn_error $? "Your add source root seems to contain a full jaxws repo! An add source root should only contain additional sources." "$LINENO" 5
28942
-
fi
28943
-
if test -f $with_add_source_root/hotspot/make/Makefile; then
28944
-
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
28945
-
fi
28946
-
if test -f $with_add_source_root/nashorn/make/Makefile; then
28947
-
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
28948
-
fi
28949
-
if test -f $with_add_source_root/jdk/make/Makefile; then
28950
-
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
28951
-
fi
28952
-
fi
28953
-
28954
-
28955
-
if test "x$with_override_source_root" != x; then
28956
-
if ! test -d $with_override_source_root; then
28957
-
as_fn_error $? "Trying to use a non-existant override-source-root $with_override_source_root" "$LINENO" 5
28958
-
fi
28959
-
CURDIR="$PWD"
28960
-
cd "$with_override_source_root"
28961
-
OVERRIDE_SRC_ROOT="`pwd`"
28962
-
cd "$CURDIR"
28963
-
if test -f $with_override_source_root/langtools/make/Makefile; then
28964
-
as_fn_error $? "Your override source root seems to contain a full langtools repo! An override source root should only contain sources that override." "$LINENO" 5
28965
-
fi
28966
-
if test -f $with_override_source_root/corba/make/Makefile; then
28967
-
as_fn_error $? "Your override source root seems to contain a full corba repo! An override source root should only contain sources that override." "$LINENO" 5
28968
-
fi
28969
-
if test -f $with_override_source_root/jaxp/make/Makefile; then
28970
-
as_fn_error $? "Your override source root seems to contain a full jaxp repo! An override source root should only contain sources that override." "$LINENO" 5
28971
-
fi
28972
-
if test -f $with_override_source_root/jaxws/make/Makefile; then
28973
-
as_fn_error $? "Your override source root seems to contain a full jaxws repo! An override source root should only contain sources that override." "$LINENO" 5
28974
-
fi
28975
-
if test -f $with_override_source_root/hotspot/make/Makefile; then
28976
-
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
28977
-
fi
28978
-
if test -f $with_override_source_root/nashorn/make/Makefile; then
28979
-
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
28980
-
fi
28981
-
if test -f $with_override_source_root/jdk/make/Makefile; then
28982
-
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
# Check whether --with-override-langtools was given.
29008
28920
if test "${with_override_langtools+set}" = set; then :
29009
-
withval=$with_override_langtools;
28921
+
withval=$with_override_langtools; { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Option --with-override-langtools is deprecated and will be ignored." >&5
28922
+
$as_echo "$as_me: WARNING: Option --with-override-langtools is deprecated and will be ignored." >&2;}
29010
28923
fi
29011
28924
29012
28925
29013
28926
28927
+
29014
28928
# Check whether --with-override-corba was given.
29015
28929
if test "${with_override_corba+set}" = set; then :
29016
-
withval=$with_override_corba;
28930
+
withval=$with_override_corba; { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Option --with-override-corba is deprecated and will be ignored." >&5
28931
+
$as_echo "$as_me: WARNING: Option --with-override-corba is deprecated and will be ignored." >&2;}
29017
28932
fi
29018
28933
29019
28934
29020
28935
28936
+
29021
28937
# Check whether --with-override-jaxp was given.
29022
28938
if test "${with_override_jaxp+set}" = set; then :
29023
-
withval=$with_override_jaxp;
28939
+
withval=$with_override_jaxp; { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Option --with-override-jaxp is deprecated and will be ignored." >&5
28940
+
$as_echo "$as_me: WARNING: Option --with-override-jaxp is deprecated and will be ignored." >&2;}
29024
28941
fi
29025
28942
29026
28943
29027
28944
28945
+
29028
28946
# Check whether --with-override-jaxws was given.
29029
28947
if test "${with_override_jaxws+set}" = set; then :
29030
-
withval=$with_override_jaxws;
28948
+
withval=$with_override_jaxws; { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Option --with-override-jaxws is deprecated and will be ignored." >&5
28949
+
$as_echo "$as_me: WARNING: Option --with-override-jaxws is deprecated and will be ignored." >&2;}
29031
28950
fi
29032
28951
29033
28952
29034
28953
28954
+
29035
28955
# Check whether --with-override-hotspot was given.
29036
28956
if test "${with_override_hotspot+set}" = set; then :
29037
-
withval=$with_override_hotspot;
28957
+
withval=$with_override_hotspot; { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Option --with-override-hotspot is deprecated and will be ignored." >&5
28958
+
$as_echo "$as_me: WARNING: Option --with-override-hotspot is deprecated and will be ignored." >&2;}
29038
28959
fi
29039
28960
29040
28961
29041
28962
28963
+
29042
28964
# Check whether --with-override-nashorn was given.
29043
28965
if test "${with_override_nashorn+set}" = set; then :
29044
-
withval=$with_override_nashorn;
28966
+
withval=$with_override_nashorn; { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Option --with-override-nashorn is deprecated and will be ignored." >&5
28967
+
$as_echo "$as_me: WARNING: Option --with-override-nashorn is deprecated and will be ignored." >&2;}
29045
28968
fi
29046
28969
29047
28970
29048
28971
28972
+
29049
28973
# Check whether --with-override-jdk was given.
29050
28974
if test "${with_override_jdk+set}" = set; then :
29051
-
withval=$with_override_jdk;
28975
+
withval=$with_override_jdk; { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Option --with-override-jdk is deprecated and will be ignored." >&5
28976
+
$as_echo "$as_me: WARNING: Option --with-override-jdk is deprecated and will be ignored." >&2;}
29052
28977
fi
29053
28978
29054
28979
29055
-
if test "x$with_override_langtools" != x; then
29056
-
CURDIR="$PWD"
29057
-
cd "$with_override_langtools"
29058
-
LANGTOOLS_TOPDIR="`pwd`"
29059
-
cd "$CURDIR"
29060
-
if ! test -f $LANGTOOLS_TOPDIR/make/Makefile; then
29061
-
as_fn_error $? "You have to override langtools with a full langtools repo!" "$LINENO" 5
29062
-
fi
29063
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if langtools should be overridden" >&5
29064
-
$as_echo_n "checking if langtools should be overridden... " >&6; }
29065
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes with $LANGTOOLS_TOPDIR" >&5
29066
-
$as_echo "yes with $LANGTOOLS_TOPDIR" >&6; }
29067
-
fi
29068
-
if test "x$with_override_corba" != x; then
29069
-
CURDIR="$PWD"
29070
-
cd "$with_override_corba"
29071
-
CORBA_TOPDIR="`pwd`"
29072
-
cd "$CURDIR"
29073
-
if ! test -f $CORBA_TOPDIR/make/Makefile; then
29074
-
as_fn_error $? "You have to override corba with a full corba repo!" "$LINENO" 5
29075
-
fi
29076
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if corba should be overridden" >&5
29077
-
$as_echo_n "checking if corba should be overridden... " >&6; }
29078
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes with $CORBA_TOPDIR" >&5
29079
-
$as_echo "yes with $CORBA_TOPDIR" >&6; }
29080
-
fi
29081
-
if test "x$with_override_jaxp" != x; then
29082
-
CURDIR="$PWD"
29083
-
cd "$with_override_jaxp"
29084
-
JAXP_TOPDIR="`pwd`"
29085
-
cd "$CURDIR"
29086
-
if ! test -f $JAXP_TOPDIR/make/Makefile; then
29087
-
as_fn_error $? "You have to override jaxp with a full jaxp repo!" "$LINENO" 5
29088
-
fi
29089
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if jaxp should be overridden" >&5
29090
-
$as_echo_n "checking if jaxp should be overridden... " >&6; }
29091
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes with $JAXP_TOPDIR" >&5
29092
-
$as_echo "yes with $JAXP_TOPDIR" >&6; }
29093
-
fi
29094
-
if test "x$with_override_jaxws" != x; then
29095
-
CURDIR="$PWD"
29096
-
cd "$with_override_jaxws"
29097
-
JAXWS_TOPDIR="`pwd`"
29098
-
cd "$CURDIR"
29099
-
if ! test -f $JAXWS_TOPDIR/make/Makefile; then
29100
-
as_fn_error $? "You have to override jaxws with a full jaxws repo!" "$LINENO" 5
29101
-
fi
29102
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if jaxws should be overridden" >&5
29103
-
$as_echo_n "checking if jaxws should be overridden... " >&6; }
29104
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes with $JAXWS_TOPDIR" >&5
29105
-
$as_echo "yes with $JAXWS_TOPDIR" >&6; }
29106
-
fi
29107
-
if test "x$with_override_hotspot" != x; then
29108
-
CURDIR="$PWD"
29109
-
cd "$with_override_hotspot"
29110
-
HOTSPOT_TOPDIR="`pwd`"
29111
-
cd "$CURDIR"
29112
-
if ! test -f $HOTSPOT_TOPDIR/make/Makefile; then
29113
-
as_fn_error $? "You have to override hotspot with a full hotspot repo!" "$LINENO" 5
29114
-
fi
29115
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if hotspot should be overridden" >&5
29116
-
$as_echo_n "checking if hotspot should be overridden... " >&6; }
29117
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes with $HOTSPOT_TOPDIR" >&5
29118
-
$as_echo "yes with $HOTSPOT_TOPDIR" >&6; }
29119
-
fi
29120
-
if test "x$with_override_nashorn" != x; then
29121
-
CURDIR="$PWD"
29122
-
cd "$with_override_nashorn"
29123
-
NASHORN_TOPDIR="`pwd`"
29124
-
cd "$CURDIR"
29125
-
if ! test -f $NASHORN_TOPDIR/make/Makefile; then
29126
-
as_fn_error $? "You have to override nashorn with a full nashorn repo!" "$LINENO" 5
29127
-
fi
29128
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if nashorn should be overridden" >&5
29129
-
$as_echo_n "checking if nashorn should be overridden... " >&6; }
29130
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes with $NASHORN_TOPDIR" >&5
29131
-
$as_echo "yes with $NASHORN_TOPDIR" >&6; }
29132
-
fi
29133
-
if test "x$with_override_jdk" != x; then
29134
-
CURDIR="$PWD"
29135
-
cd "$with_override_jdk"
29136
-
JDK_TOPDIR="`pwd`"
29137
-
cd "$CURDIR"
29138
-
if ! test -f $JDK_TOPDIR/make/Makefile; then
29139
-
as_fn_error $? "You have to override JDK with a full JDK repo!" "$LINENO" 5
29140
-
fi
29141
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if JDK should be overridden" >&5
29142
-
$as_echo_n "checking if JDK should be overridden... " >&6; }
29143
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes with $JDK_TOPDIR" >&5
0 commit comments