8320931: [REDO] dsymutil command leaves around temporary directories
Reviewed-by: ihse, clanger
This commit is contained in:
parent
8be3e39220
commit
6f7bb79a5b
@ -390,6 +390,17 @@ AC_DEFUN_ONCE([BASIC_SETUP_COMPLEX_TOOLS],
|
|||||||
|
|
||||||
if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then
|
if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then
|
||||||
UTIL_REQUIRE_PROGS(DSYMUTIL, dsymutil)
|
UTIL_REQUIRE_PROGS(DSYMUTIL, dsymutil)
|
||||||
|
AC_MSG_CHECKING([if dsymutil supports --reproducer option])
|
||||||
|
if $DSYMUTIL --help | $GREP -q '\--reproducer '; then
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
# --reproducer option is supported
|
||||||
|
# set "--reproducer Off" to prevent unnecessary temporary
|
||||||
|
# directories creation
|
||||||
|
DSYMUTIL="$DSYMUTIL --reproducer Off"
|
||||||
|
else
|
||||||
|
# --reproducer option isn't supported
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
fi
|
||||||
UTIL_REQUIRE_PROGS(MIG, mig)
|
UTIL_REQUIRE_PROGS(MIG, mig)
|
||||||
UTIL_REQUIRE_PROGS(XATTR, xattr)
|
UTIL_REQUIRE_PROGS(XATTR, xattr)
|
||||||
UTIL_LOOKUP_PROGS(CODESIGN, codesign)
|
UTIL_LOOKUP_PROGS(CODESIGN, codesign)
|
||||||
|
Loading…
Reference in New Issue
Block a user