aboutsummaryrefslogtreecommitdiffstats
path: root/.gitignore
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-05-10 15:47:44 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-06-30 05:30:14 -0300
commit011d84b462a78703b9b939cb5e48b4cc75ebe015 (patch)
treefe2ad82e289323a7749191a6e8f719b011e2b937 /.gitignore
parentTransmission fixes: drop private-lib (#5213) (diff)
downloadfirejail-011d84b462a78703b9b939cb5e48b4cc75ebe015.tar.gz
firejail-011d84b462a78703b9b939cb5e48b4cc75ebe015.tar.zst
firejail-011d84b462a78703b9b939cb5e48b4cc75ebe015.zip
build: reduce autoconf input files from 32 to 2
Configure summary: autoconf essentially only parses configure.ac and generates the configure script (that is, the "./configure" shell script). The latter is what actually checks what is available on the system and internally sets the value of the output variables. It then, for every filename foo in AC_CONFIG_FILES (and for every output variable name BAR in AC_SUBST), reads foo.in, replaces every occurrence of `@BAR@` with the value of the shell variable `$BAR` and generates the file foo from the result. After this, configure is finished and `make` could be executed to start the build. Now that (as of #5140) all output variables are only defined on config.mk.in and on config.sh.in, there is no need to generate any makefile nor any other mkfile or shell script at configure time. So rename every "Makefile.in" to "Makefile", mkdeb.sh.in to mkdeb.sh, src/common.mk.in to src/common.mk and leave just config.mk and config.sh as the files to be generated at configure time. This allows editing and committing all makefiles directly, without potentially having to run ./configure in between. Commands used to rename the makefiles: $ git ls-files -z -- '*Makefile.in' | xargs -0 -I '{}' sh -c \ "git mv '{}' \"\$(dirname '{}')/Makefile\"" Additionally, from my (rudimentary) testing, this commit reduces the time it takes to run ./configure by about 20~25% compared to commit 72ece92ea ("Transmission fixes: drop private-lib (#5213)", 2022-06-22). Environment: dash 0.5.11.5-1, gcc 12.1.0-2, Artix Linux, ext4 on an HDD. Commands used for benchmarking each commit: $ : >time_configure && ./configure && make distclean && for i in $(seq 1 10); do { time -p ./configure; } 2>>time_configure; done $ grep real time_configure | awk '{ total += $2 } END { print total/NR }'
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore3
1 files changed, 0 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 70dba09b2..66daccf5d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,7 +10,6 @@
10.directory 10.directory
11*.man 11*.man
12.vscode 12.vscode
13Makefile
14autom4te.cache/ 13autom4te.cache/
15config.log 14config.log
16config.mk 15config.mk
@@ -25,7 +24,6 @@ firejail.1
25firemon.1 24firemon.1
26firecfg.1 25firecfg.1
27jailcheck.1 26jailcheck.1
28mkdeb.sh
29src/fnettrace-dns/fnettrace-dns 27src/fnettrace-dns/fnettrace-dns
30src/fnettrace-sni/fnettrace-sni 28src/fnettrace-sni/fnettrace-sni
31src/firejail/firejail 29src/firejail/firejail
@@ -57,7 +55,6 @@ seccomp.64
57seccomp.block_secondary 55seccomp.block_secondary
58seccomp.mdwx 56seccomp.mdwx
59seccomp.mdwx.32 57seccomp.mdwx.32
60src/common.mk
61aclocal.m4 58aclocal.m4
62__pycache__ 59__pycache__
63*.pyc 60*.pyc