mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8196365: Overriding configure variable from custom hook generates warning
Reviewed-by: tbell
This commit is contained in:
parent
81a51d8c45
commit
bb337bd480
3 changed files with 14 additions and 14 deletions
|
@ -1187,9 +1187,6 @@ AC_DEFUN_ONCE([BASIC_CHECK_SRC_PERMS],
|
||||||
|
|
||||||
AC_DEFUN_ONCE([BASIC_TEST_USABILITY_ISSUES],
|
AC_DEFUN_ONCE([BASIC_TEST_USABILITY_ISSUES],
|
||||||
[
|
[
|
||||||
# Did user specify any unknown variables?
|
|
||||||
BASIC_CHECK_LEFTOVER_OVERRIDDEN
|
|
||||||
|
|
||||||
AC_MSG_CHECKING([if build directory is on local disk])
|
AC_MSG_CHECKING([if build directory is on local disk])
|
||||||
BASIC_CHECK_DIR_ON_LOCAL_DISK($OUTPUTDIR,
|
BASIC_CHECK_DIR_ON_LOCAL_DISK($OUTPUTDIR,
|
||||||
[OUTPUT_DIR_IS_LOCAL="yes"],
|
[OUTPUT_DIR_IS_LOCAL="yes"],
|
||||||
|
|
|
@ -280,6 +280,9 @@ CUSTOM_LATE_HOOK
|
||||||
# This needs to be done after CUSTOM_LATE_HOOK since we can setup custom features.
|
# This needs to be done after CUSTOM_LATE_HOOK since we can setup custom features.
|
||||||
HOTSPOT_VALIDATE_JVM_FEATURES
|
HOTSPOT_VALIDATE_JVM_FEATURES
|
||||||
|
|
||||||
|
# Did user specify any unknown variables?
|
||||||
|
BASIC_CHECK_LEFTOVER_OVERRIDDEN
|
||||||
|
|
||||||
# We're messing a bit with internal autoconf variables to put the config.status
|
# We're messing a bit with internal autoconf variables to put the config.status
|
||||||
# in the output directory instead of the current directory.
|
# in the output directory instead of the current directory.
|
||||||
CONFIG_STATUS="$CONFIGURESUPPORT_OUTPUTDIR/config.status"
|
CONFIG_STATUS="$CONFIGURESUPPORT_OUTPUTDIR/config.status"
|
||||||
|
|
|
@ -5215,7 +5215,7 @@ VS_SDK_PLATFORM_NAME_2017=
|
||||||
#CUSTOM_AUTOCONF_INCLUDE
|
#CUSTOM_AUTOCONF_INCLUDE
|
||||||
|
|
||||||
# Do not change or remove the following line, it is needed for consistency checks:
|
# Do not change or remove the following line, it is needed for consistency checks:
|
||||||
DATE_WHEN_GENERATED=1517244998
|
DATE_WHEN_GENERATED=1517274450
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
|
@ -69083,16 +69083,6 @@ $as_echo "no" >&6; }
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Did user specify any unknown variables?
|
|
||||||
|
|
||||||
if test "x$CONFIGURE_OVERRIDDEN_VARIABLES" != x; then
|
|
||||||
# Replace the separating ! with spaces before presenting for end user.
|
|
||||||
unknown_variables=${CONFIGURE_OVERRIDDEN_VARIABLES//!/ }
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The following variables might be unknown to configure: $unknown_variables" >&5
|
|
||||||
$as_echo "$as_me: WARNING: The following variables might be unknown to configure: $unknown_variables" >&2;}
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if build directory is on local disk" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if build directory is on local disk" >&5
|
||||||
$as_echo_n "checking if build directory is on local disk... " >&6; }
|
$as_echo_n "checking if build directory is on local disk... " >&6; }
|
||||||
|
|
||||||
|
@ -69174,6 +69164,16 @@ $as_echo "$JVM_FEATURES_TO_TEST" >&6; }
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
# Did user specify any unknown variables?
|
||||||
|
|
||||||
|
if test "x$CONFIGURE_OVERRIDDEN_VARIABLES" != x; then
|
||||||
|
# Replace the separating ! with spaces before presenting for end user.
|
||||||
|
unknown_variables=${CONFIGURE_OVERRIDDEN_VARIABLES//!/ }
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The following variables might be unknown to configure: $unknown_variables" >&5
|
||||||
|
$as_echo "$as_me: WARNING: The following variables might be unknown to configure: $unknown_variables" >&2;}
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# We're messing a bit with internal autoconf variables to put the config.status
|
# We're messing a bit with internal autoconf variables to put the config.status
|
||||||
# in the output directory instead of the current directory.
|
# in the output directory instead of the current directory.
|
||||||
CONFIG_STATUS="$CONFIGURESUPPORT_OUTPUTDIR/config.status"
|
CONFIG_STATUS="$CONFIGURESUPPORT_OUTPUTDIR/config.status"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue