Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile.in: stop running distclean on dist
distclean erases user-made modifications to the files generated by the configure script; it is not obvious that a non-"clean" target would ever run it. That is, instead of: ./configure --enable-foo && make distclean && make dist It would probably be safer (and more maintainable) to do: make distclean && ./configure --enable-foo && make dist So drop the distclean call and the file-moving hacks around it. Added on commit 1379851 ("Baseline firejail 0.9.28", 2015-08-08). Relates to commit 6849191 ("bug: preserve config.status during make dist", 2016-09-19) and commit 31dc121 ("fixups", 2020-07-19).
- Loading branch information