diff options
author | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2019-03-08 22:20:52 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2019-03-20 13:28:49 (GMT) |
commit | ea9a2c175929f8276ef80ee85f81675fccd9c757 (patch) | |
tree | 2aafcc99a5d6f39fa5001017600923c7c0d91ba1 /Tests/RunCMake/CommandLineTar/pax.cmake | |
parent | 51f3a76ab23fda217e61f0d2a53272836897717f (diff) | |
download | CMake-ea9a2c175929f8276ef80ee85f81675fccd9c757.zip CMake-ea9a2c175929f8276ef80ee85f81675fccd9c757.tar.gz CMake-ea9a2c175929f8276ef80ee85f81675fccd9c757.tar.bz2 |
cmake: tar: Parse 'cmake -E tar' arguments
Diffstat (limited to 'Tests/RunCMake/CommandLineTar/pax.cmake')
-rw-r--r-- | Tests/RunCMake/CommandLineTar/pax.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/RunCMake/CommandLineTar/pax.cmake b/Tests/RunCMake/CommandLineTar/pax.cmake index 60ed238..77f74d1 100644 --- a/Tests/RunCMake/CommandLineTar/pax.cmake +++ b/Tests/RunCMake/CommandLineTar/pax.cmake @@ -1,9 +1,9 @@ set(OUTPUT_NAME "test.tar") -set(COMPRESSION_FLAGS cvf) +set(COMPRESSION_FLAGS -cvf) set(COMPRESSION_OPTIONS --format=pax) -set(DECOMPRESSION_FLAGS xvf) +set(DECOMPRESSION_FLAGS -xvf) include(${CMAKE_CURRENT_LIST_DIR}/roundtrip.cmake) |