Skip to content

Commit 281c89b

Browse files
author
duke
committedSep 21, 2023
Automatic merge of jdk:master into master
2 parents 64281ab + bee7524 commit 281c89b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎make/autoconf/basic.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ AC_DEFUN([BASIC_CHECK_DIR_ON_LOCAL_DISK],
479479
# df on AIX does not understand -l. On modern AIXes it understands "-T local" which
480480
# is the same. On older AIXes we just continue to live with a "not local build" warning.
481481
if test "x$OPENJDK_TARGET_OS" = xaix; then
482-
if "$DF -T local > /dev/null 2>&1"; then
482+
if $DF -T local > /dev/null 2>&1; then
483483
DF_LOCAL_ONLY_OPTION='-T local'
484484
else # AIX may use GNU-utils instead
485485
DF_LOCAL_ONLY_OPTION='-l'

0 commit comments

Comments
 (0)
Please sign in to comment.