aboutsummaryrefslogtreecommitdiffstats
path: root/src/zsh_completion
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-05-04 21:32:18 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-06-12 16:08:47 -0300
commitaaada595539a2dbe66deed97343f1a738b40752c (patch)
tree4bbc2e8a32065088f06917430b5b0b3e7d62eeda /src/zsh_completion
parentmakefiles: deduplicate configure-time vars into new config.mk.in (diff)
downloadfirejail-aaada595539a2dbe66deed97343f1a738b40752c.tar.gz
firejail-aaada595539a2dbe66deed97343f1a738b40752c.tar.zst
firejail-aaada595539a2dbe66deed97343f1a738b40752c.zip
makefiles: include config.mk instead of common.mk where possible
common.mk contains definitions for building programs and it includes config.mk. Some makefiles that include common.mk do not contain any targets for building programs. They depend only on configure-time variable definitions (which are defined on config.mk) rather than anything specific to common.mk. So change their includes of common.mk to config.mk.
Diffstat (limited to 'src/zsh_completion')
-rw-r--r--src/zsh_completion/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zsh_completion/Makefile.in b/src/zsh_completion/Makefile.in
index 9ca12e92b..fceab1d00 100644
--- a/src/zsh_completion/Makefile.in
+++ b/src/zsh_completion/Makefile.in
@@ -2,7 +2,7 @@
2all: _firejail 2all: _firejail
3 3
4ROOT = ../.. 4ROOT = ../..
5include $(ROOT)/src/common.mk 5include $(ROOT)/config.mk
6 6
7_firejail: _firejail.in 7_firejail: _firejail.in
8 gawk -f ../man/preproc.awk -- $(MANFLAGS) < $< > $@.tmp 8 gawk -f ../man/preproc.awk -- $(MANFLAGS) < $< > $@.tmp