We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ceff47b commit bee7524Copy full SHA for bee7524
make/autoconf/basic.m4
@@ -479,7 +479,7 @@ AC_DEFUN([BASIC_CHECK_DIR_ON_LOCAL_DISK],
479
# df on AIX does not understand -l. On modern AIXes it understands "-T local" which
480
# is the same. On older AIXes we just continue to live with a "not local build" warning.
481
if test "x$OPENJDK_TARGET_OS" = xaix; then
482
- if "$DF -T local > /dev/null 2>&1"; then
+ if $DF -T local > /dev/null 2>&1; then
483
DF_LOCAL_ONLY_OPTION='-T local'
484
else # AIX may use GNU-utils instead
485
DF_LOCAL_ONLY_OPTION='-l'
0 commit comments