aboutsummaryrefslogtreecommitdiffstats
path: root/src/bash_completion/Makefile
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-06-23 02:51:52 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-06-30 05:32:07 -0300
commit83ae0ed8379e2e00815cbe60e2e512665e48c1ed (patch)
tree2f7abf48abad397bffcfe6add4d949b3557df95b /src/bash_completion/Makefile
parentbuild: reduce autoconf input files from 32 to 2 (diff)
downloadfirejail-83ae0ed8379e2e00815cbe60e2e512665e48c1ed.tar.gz
firejail-83ae0ed8379e2e00815cbe60e2e512665e48c1ed.tar.zst
firejail-83ae0ed8379e2e00815cbe60e2e512665e48c1ed.zip
makefiles: stop failing when config.mk does not exist
This allows running `make clean` and `make distclean` (and possibly others) without having to run ./configure beforehand. Note that some packaging-related targets still depend on the existence of generated files. For example: * dist: config.mk * deb: config.sh Commands used to search and replace: $ git grep -Elz 'include *([^ ]*/)?config.mk' | xargs -0 -I '{}' \ sh -c "printf '%s\n' \ \"\$(sed -E 's|^include *(([^ ]*/)?config.mk)|-include \1|' '{}')\" >'{}'" Relates to #5140.
Diffstat (limited to 'src/bash_completion/Makefile')
-rw-r--r--src/bash_completion/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bash_completion/Makefile b/src/bash_completion/Makefile
index 9157c9225..16c4a31ee 100644
--- a/src/bash_completion/Makefile
+++ b/src/bash_completion/Makefile
@@ -2,7 +2,7 @@
2all: firejail.bash_completion 2all: firejail.bash_completion
3 3
4ROOT = ../.. 4ROOT = ../..
5include $(ROOT)/config.mk 5-include $(ROOT)/config.mk
6 6
7firejail.bash_completion: firejail.bash_completion.in 7firejail.bash_completion: firejail.bash_completion.in
8 gawk -f ../man/preproc.awk -- $(MANFLAGS) < $< > $@.tmp 8 gawk -f ../man/preproc.awk -- $(MANFLAGS) < $< > $@.tmp