File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -269,6 +269,8 @@ AC_DEFUN([BASIC_CHECK_TAR],
269
269
TAR_TYPE="bsd"
270
270
elif test "x$($TAR -v | $GREP "bsdtar")" != "x"; then
271
271
TAR_TYPE="bsd"
272
+ elif test "x$($TAR --version | $GREP "busybox")" != "x"; then
273
+ TAR_TYPE="busybox"
272
274
elif test "x$OPENJDK_BUILD_OS" = "xaix"; then
273
275
TAR_TYPE="aix"
274
276
fi
@@ -280,9 +282,12 @@ AC_DEFUN([BASIC_CHECK_TAR],
280
282
TAR_SUPPORTS_TRANSFORM="true"
281
283
elif test "x$TAR_TYPE" = "aix"; then
282
284
# -L InputList of aix tar: name of file listing the files and directories
283
- # that need to be archived or extracted
285
+ # that need to be archived or extracted
284
286
TAR_INCLUDE_PARAM="L"
285
287
TAR_SUPPORTS_TRANSFORM="false"
288
+ elif test "x$TAR_TYPE" = "xbusybox"; then
289
+ TAR_INCLUDE_PARAM="T"
290
+ TAR_SUPPORTS_TRANSFORM="false"
286
291
else
287
292
TAR_INCLUDE_PARAM="I"
288
293
TAR_SUPPORTS_TRANSFORM="false"
You can’t perform that action at this time.
0 commit comments