aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-12 05:16:10 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-12 05:17:40 -0300
commit6767f30660034592a58efed43e81888f372f6281 (patch)
treeed3148523be0643f84935b26192a4727ab0900b4 /test
parentMerge pull request #5953 from varunsh-coder/update-harden-runner (diff)
downloadfirejail-6767f30660034592a58efed43e81888f372f6281.tar.gz
firejail-6767f30660034592a58efed43e81888f372f6281.tar.zst
firejail-6767f30660034592a58efed43e81888f372f6281.zip
build: fix TARNAME/VERSION variables in compile.sh
This fixes the following errors: $ make clean [...] cd test/compile; ./compile.sh --clean; cd ../.. ./compile.sh: line 55: TARNAME: command not found ./compile.sh: line 55: VERSION: command not found This amends commit 200f389ed ("build: use config.sh in more scripts", 2023-07-28) / PR #5927.
Diffstat (limited to 'test')
-rwxr-xr-xtest/compile/compile.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compile/compile.sh b/test/compile/compile.sh
index 0e3425f8d..b7a3b39d8 100755
--- a/test/compile/compile.sh
+++ b/test/compile/compile.sh
@@ -52,7 +52,7 @@ print_title() {
52 echo "**************************************************" 52 echo "**************************************************"
53} 53}
54 54
55DIST="$(TARNAME)-$(VERSION)" 55DIST="$TARNAME-$VERSION"
56while [[ $# -gt 0 ]]; do # Until you run out of parameters . . . 56while [[ $# -gt 0 ]]; do # Until you run out of parameters . . .
57 case "$1" in 57 case "$1" in
58 --clean) 58 --clean)