mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
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}
8 lines
151 B
Bash
8 lines
151 B
Bash
# @configure_input@
|
|
#
|
|
# shellcheck shell=sh
|
|
# shellcheck disable=SC2034
|
|
|
|
NAME="@PACKAGE_NAME@"
|
|
TARNAME="@PACKAGE_TARNAME@"
|
|
VERSION="@PACKAGE_VERSION@"
|