File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,8 @@ AC_DEFUN([BASIC_CHECK_TAR],
270270 TAR_TYPE="bsd"
271271 elif test "x$($TAR -v | $GREP "bsdtar")" != "x"; then
272272 TAR_TYPE="bsd"
273+ elif test "x$($TAR --version | $GREP "busybox")" != "x"; then
274+ TAR_TYPE="busybox"
273275 elif test "x$OPENJDK_BUILD_OS" = "xaix"; then
274276 TAR_TYPE="aix"
275277 fi
@@ -281,9 +283,12 @@ AC_DEFUN([BASIC_CHECK_TAR],
281283 TAR_SUPPORTS_TRANSFORM="true"
282284 elif test "x$TAR_TYPE" = "aix"; then
283285 # -L InputList of aix tar: name of file listing the files and directories
284- # that need to be archived or extracted
286+ # that need to be archived or extracted
285287 TAR_INCLUDE_PARAM="L"
286288 TAR_SUPPORTS_TRANSFORM="false"
289+ elif test "x$TAR_TYPE" = "xbusybox"; then
290+ TAR_INCLUDE_PARAM="T"
291+ TAR_SUPPORTS_TRANSFORM="false"
287292 else
288293 TAR_INCLUDE_PARAM="I"
289294 TAR_SUPPORTS_TRANSFORM="false"
You can’t perform that action at this time.
0 commit comments