aboutsummaryrefslogtreecommitdiffstats
path: root/mkdeb.sh.in
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-05-10 16:26:15 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-06-12 16:08:47 -0300
commit95bfe7d71b12aa415091d15bb6084dfe7bb993f0 (patch)
tree2f6c44cb83afe0b9c32a76f22f404e80c7090269 /mkdeb.sh.in
parentmakefiles: include config.mk instead of common.mk where possible (diff)
downloadfirejail-95bfe7d71b12aa415091d15bb6084dfe7bb993f0.tar.gz
firejail-95bfe7d71b12aa415091d15bb6084dfe7bb993f0.tar.zst
firejail-95bfe7d71b12aa415091d15bb6084dfe7bb993f0.zip
mkdeb.sh.in: move configure-time vars into new config.sh.in
For better organization and so that they can be used by other shell scripts by just sourcing config.sh.
Diffstat (limited to 'mkdeb.sh.in')
-rwxr-xr-xmkdeb.sh.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/mkdeb.sh.in b/mkdeb.sh.in
index 79f8d748c..a98261ba6 100755
--- a/mkdeb.sh.in
+++ b/mkdeb.sh.in
@@ -7,8 +7,9 @@
7# a code archive should already be available 7# a code archive should already be available
8 8
9set -e 9set -e
10NAME=@PACKAGE_NAME@ 10
11VERSION=@PACKAGE_VERSION@ 11. "$(dirname "$0")/config.sh"
12
12EXTRA_VERSION=$1 13EXTRA_VERSION=$1
13 14
14test "$#" -gt 0 && shift 15test "$#" -gt 0 && shift