aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-08-11 21:17:52 +0000
committerLibravatar GitHub <noreply@github.com>2022-08-11 21:17:52 +0000
commit06c4359399f5b979f6bb77ad6c157139cc0fb325 (patch)
tree62735a84d4465518f078abb43216eb7814ee9545
parentMerge pull request #5283 from remyabel2/make-uninstall (diff)
parentconfig.sh.in: fix all issues reported by shellcheck (diff)
downloadfirejail-06c4359399f5b979f6bb77ad6c157139cc0fb325.tar.gz
firejail-06c4359399f5b979f6bb77ad6c157139cc0fb325.tar.zst
firejail-06c4359399f5b979f6bb77ad6c157139cc0fb325.zip
Merge pull request #5284 from kmk3/build-config-sh-fixes
build: config.sh.in: quote variables and fix shellcheck issues
-rw-r--r--config.sh.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/config.sh.in b/config.sh.in
index 3d54ff189..155f2158e 100644
--- a/config.sh.in
+++ b/config.sh.in
@@ -1,3 +1,7 @@
1# @configure_input@ 1# @configure_input@
2NAME=@PACKAGE_NAME@ 2#
3VERSION=@PACKAGE_VERSION@ 3# shellcheck shell=sh
4# shellcheck disable=SC2034
5
6NAME="@PACKAGE_NAME@"
7VERSION="@PACKAGE_VERSION@"