aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk.in
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-08-13 16:10:08 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-08-14 02:17:39 -0300
commit891fd0270154ba1992e30d3e59c1daf990bfb604 (patch)
tree76fd09aa586593d61a6fa28200049d0862d415bb /config.mk.in
parentbuild: rename DOCDIR to docdir (diff)
downloadfirejail-891fd0270154ba1992e30d3e59c1daf990bfb604.tar.gz
firejail-891fd0270154ba1992e30d3e59c1daf990bfb604.tar.zst
firejail-891fd0270154ba1992e30d3e59c1daf990bfb604.zip
build: add new TARNAME variable
That expands to `@PACKAGE_TARNAME@`, similar to the existing PACKAGE_TARNAME variable. To make it easier to use (and read) and to be more consistent with the surrounding variables (NAME and VERSION). Note that the original PACKAGE_TARNAME is still needed, as by default (on autoconf v2.69) `docdir=@docdir@` in config.mk.in expands to the following in config.mk: docdir=${datarootdir}/doc/${PACKAGE_TARNAME}
Diffstat (limited to 'config.mk.in')
-rw-r--r--config.mk.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.mk.in b/config.mk.in
index 7eed050ca..9973b7eaa 100644
--- a/config.mk.in
+++ b/config.mk.in
@@ -8,7 +8,8 @@
8# first target encountered). 8# first target encountered).
9 9
10NAME=@PACKAGE_NAME@ 10NAME=@PACKAGE_NAME@
11PACKAGE_TARNAME=@PACKAGE_TARNAME@ 11TARNAME=@PACKAGE_TARNAME@
12PACKAGE_TARNAME=@PACKAGE_TARNAME@ # needed by docdir
12VERSION=@PACKAGE_VERSION@ 13VERSION=@PACKAGE_VERSION@
13 14
14prefix=@prefix@ 15prefix=@prefix@