diff options
author | Jia Tan <jiat0218@gmail.com> | 2023-01-04 23:58:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 23:58:58 +0800 |
commit | 52380678f42364daa4510f92f6d3b18ec98c3638 (patch) | |
tree | 36db71569ea751be2af331906fd3032475f70ff3 /tests/test_compress_prepared_bcj_x86 | |
parent | Translations: Add Korean translation of man pages. (diff) | |
download | xz-52380678f42364daa4510f92f6d3b18ec98c3638.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 '')
-rwxr-xr-x | tests/test_compress_prepared_bcj_x86 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_compress_prepared_bcj_x86 b/tests/test_compress_prepared_bcj_x86 index a2771498..3452d7ff 100755 --- a/tests/test_compress_prepared_bcj_x86 +++ b/tests/test_compress_prepared_bcj_x86 @@ -1,3 +1,3 @@ #!/bin/sh -exec "$srcdir/test_compress.sh" "$srcdir/compress_prepared_bcj_x86" +exec "$srcdir/test_compress.sh" compress_prepared_bcj_x86 |