aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk.in
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-02-24 04:43:08 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-05-29 17:35:35 -0300
commitfb11081becb80d681c2c8ab61125b42b12961314 (patch)
tree65ec3be0da6000b92dd65ef98b388e5636b8759d /config.mk.in
parentbuild: define CC/GAWK if undefined (diff)
downloadfirejail-fb11081becb80d681c2c8ab61125b42b12961314.tar.gz
firejail-fb11081becb80d681c2c8ab61125b42b12961314.tar.zst
firejail-fb11081becb80d681c2c8ab61125b42b12961314.zip
build: allow overriding common tools
Tools: * gzip * install * rm * strip * tar For the programs not checked in configure.ac: From the manual of GNU Autoconf (version 2.71): > If you use `AC_PROG_INSTALL`, you must include `install-sh` in your > distribution So set `install` just in the Makefile. Use `$(RM)` to ensure that `-f` is always used and to make it easier to spot when `-r` is used. See commit 93d623fdf ("build: allow overriding certain tools", 2024-02-23) / PR #6222.
Diffstat (limited to 'config.mk.in')
-rw-r--r--config.mk.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.mk.in b/config.mk.in
index a7f66fbb5..812573a14 100644
--- a/config.mk.in
+++ b/config.mk.in
@@ -78,7 +78,10 @@ CC=@CC@
78CODESPELL=@CODESPELL@ 78CODESPELL=@CODESPELL@
79CPPCHECK=@CPPCHECK@ 79CPPCHECK=@CPPCHECK@
80GAWK=@GAWK@ 80GAWK=@GAWK@
81GZIP=@GZIP@
81SCAN_BUILD=@SCAN_BUILD@ 82SCAN_BUILD=@SCAN_BUILD@
83STRIP=@STRIP@
84TAR=@TAR@
82 85
83CFLAGS=@CFLAGS@ 86CFLAGS=@CFLAGS@
84CPPFLAGS=@CPPFLAGS@ 87CPPFLAGS=@CPPFLAGS@