Skip to content

Commit

Permalink
8260272: bash configure --prefix does not work after JDK-8257679
Browse files Browse the repository at this point in the history
Reviewed-by: erikj, ihse
  • Loading branch information
Dongbo He authored and RealFYang committed Jan 25, 2021
1 parent 4ae39b1 commit 764111f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions make/autoconf/util_paths.m4
Expand Up @@ -176,10 +176,10 @@ AC_DEFUN([UTIL_FIXUP_EXECUTABLE],
# space.
[ if [[ "$OPENJDK_BUILD_OS" = "windows" && input =~ ^$FIXPATH ]]; then
line="${input#$FIXPATH }"
prefix="$FIXPATH "
fixpath_prefix="$FIXPATH "
else
line="$input"
prefix=""
fixpath_prefix=""
fi ]
path="${line%% *}"
arguments="${line#"$path"}"
Expand Down Expand Up @@ -247,11 +247,11 @@ AC_DEFUN([UTIL_FIXUP_EXECUTABLE],
# Now we have a usable command as new_path, with arguments in arguments
if test "x$OPENJDK_BUILD_OS" = "xwindows"; then
if test "x$prefix" = x; then
# Only mess around if prefix was not given
if test "x$fixpath_prefix" = x; then
# Only mess around if fixpath_prefix was not given
UTIL_CHECK_WINENV_EXEC_TYPE("$new_path")
if test "x$RESULT" = xwindows; then
prefix="$FIXPATH "
fixpath_prefix="$FIXPATH "
# make sure we have an .exe suffix (but not two)
new_path="${new_path%.exe}.exe"
else
Expand All @@ -262,11 +262,11 @@ AC_DEFUN([UTIL_FIXUP_EXECUTABLE],
fi
if test "x$3" = xNOFIXPATH; then
prefix=""
fixpath_prefix=""
fi
# Now join together the path and the arguments once again
new_complete="$prefix$new_path$arguments"
new_complete="$fixpath_prefix$new_path$arguments"
$1="$new_complete"
fi
])
Expand Down

1 comment on commit 764111f

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.