diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2022-09-28 09:38:06 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2023-03-17 21:27:56 +0100 |
commit | 32e793449272d7f75985832d538c7ed2db2985ad (patch) | |
tree | 6c63725120d03cd00589026012895f5fd66859c1 | |
parent | 62f2fab96701b5ca044f07dde63f984229dfa475 (diff) |
Use short decompress option name for gzip compatibility. #1347
Long option names in BusyBoxy is an optional feature, so use short option
names by default.
-rw-r--r-- | cmake/test-compress.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/test-compress.cmake b/cmake/test-compress.cmake index cfc7613..199796d 100644 --- a/cmake/test-compress.cmake +++ b/cmake/test-compress.cmake @@ -173,7 +173,7 @@ if(GZIP_VERIFY AND NOT "${COMPRESS_ARGS}" MATCHES "-T") endif() # Check gzip can decompress our compressed output - set(GZ_DECOMPRESS_COMMAND ${GZIP} --decompress) + set(GZ_DECOMPRESS_COMMAND ${GZIP} -d) message(STATUS "Gzip decompress ${GZ_DECOMPRESS_COMMAND}") message(STATUS " Input: ${OUTPUT_BASE}.gz") |