diff options
author | Jia Tan <jiat0218@gmail.com> | 2023-01-04 23:58:58 +0800 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2023-01-05 00:30:22 +0800 |
commit | 761c208d58e0c3daa0f46e68b406adfc318d2a46 (patch) | |
tree | 56983d9e798ed7b6ba3a3e37ce8c9dc692176980 /tests/test_compress_prepared_bcj_sparc | |
parent | Translations: Add Korean translation of man pages. (diff) | |
download | xz-761c208d58e0c3daa0f46e68b406adfc318d2a46.tar.xz |
Tests: Replace non portable shell parameter expansion
The shell parameter expansion using # and ## is not supported in
Solaris 10 Bourne shell (/bin/sh). Even though this is POSIX, it is not fully
portable, so we should avoid it.
Diffstat (limited to 'tests/test_compress_prepared_bcj_sparc')
-rwxr-xr-x | tests/test_compress_prepared_bcj_sparc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_compress_prepared_bcj_sparc b/tests/test_compress_prepared_bcj_sparc index 01447e13..deb76ef6 100755 --- a/tests/test_compress_prepared_bcj_sparc +++ b/tests/test_compress_prepared_bcj_sparc @@ -1,3 +1,3 @@ #!/bin/sh -exec "$srcdir/test_compress.sh" "$srcdir/compress_prepared_bcj_sparc" +exec "$srcdir/test_compress.sh" compress_prepared_bcj_sparc |