aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-05-14 00:07:03 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-06-12 16:08:47 -0300
commitac1d176703870492a4517a22406660e50044630f (patch)
tree733ccfaceb22ae9af14fa6c426005ed9a5cd8861 /Makefile.in
parentconfigure*: sort AC_CONFIG_FILES (diff)
downloadfirejail-ac1d176703870492a4517a22406660e50044630f.tar.gz
firejail-ac1d176703870492a4517a22406660e50044630f.tar.zst
firejail-ac1d176703870492a4517a22406660e50044630f.zip
Makefile.in: remove redundant quotes around DISTFILES vars
They are being double-quoted twice, as in `""$(DISTFILES)""`, which is equivalent to not using quotes at all, as each double-quote pair gets expanded into nothing, leaving only `$(DISTFILES)`. Note that DISTFILES and DISTFILES_TEST are the only variables defined with quoted values and that make does not work with filenames that contain whitespace anyway. Added on commit da19d2d1b ("Simplify dist target and add missing test/sysutils to tarball", 2016-07-25) / PR #646.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index f788435c0..df000aefc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -203,8 +203,8 @@ uninstall:
203 rm -f $(DESTDIR)$(datarootdir)/bash-completion/completions/firecfg 203 rm -f $(DESTDIR)$(datarootdir)/bash-completion/completions/firecfg
204 @echo "If you want to install a different version of firejail, you might also need to run 'rm -fr $(DESTDIR)$(sysconfdir)/firejail', see #2038." 204 @echo "If you want to install a different version of firejail, you might also need to run 'rm -fr $(DESTDIR)$(sysconfdir)/firejail', see #2038."
205 205
206DISTFILES = "src etc m4 platform contrib configure configure.ac Makefile.in install.sh mkman.sh mketc.sh mkdeb.sh.in COPYING README RELNOTES" 206DISTFILES = src etc m4 platform contrib configure configure.ac Makefile.in install.sh mkman.sh mketc.sh mkdeb.sh.in COPYING README RELNOTES
207DISTFILES_TEST = "test/Makefile.in test/apps test/apps-x11 test/apps-x11-xorg test/root test/private-lib test/fnetfilter test/fcopy test/environment test/profiles test/utils test/compile test/filters test/network test/fs test/sysutils test/chroot" 207DISTFILES_TEST = test/Makefile.in test/apps test/apps-x11 test/apps-x11-xorg test/root test/private-lib test/fnetfilter test/fcopy test/environment test/profiles test/utils test/compile test/filters test/network test/fs test/sysutils test/chroot
208 208
209dist: 209dist:
210 mv config.status config.status.old 210 mv config.status config.status.old
@@ -214,8 +214,8 @@ dist:
214 mv config.status.old config.status 214 mv config.status.old config.status
215 rm -fr $(NAME)-$(VERSION) $(NAME)-$(VERSION).tar.xz 215 rm -fr $(NAME)-$(VERSION) $(NAME)-$(VERSION).tar.xz
216 mkdir -p $(NAME)-$(VERSION)/test 216 mkdir -p $(NAME)-$(VERSION)/test
217 cp -a "$(DISTFILES)" $(NAME)-$(VERSION) 217 cp -a $(DISTFILES) $(NAME)-$(VERSION)
218 cp -a "$(DISTFILES_TEST)" $(NAME)-$(VERSION)/test 218 cp -a $(DISTFILES_TEST) $(NAME)-$(VERSION)/test
219 rm -rf $(NAME)-$(VERSION)/src/tools 219 rm -rf $(NAME)-$(VERSION)/src/tools
220 find $(NAME)-$(VERSION) -name .svn -delete 220 find $(NAME)-$(VERSION) -name .svn -delete
221 tar -cJvf $(NAME)-$(VERSION).tar.xz $(NAME)-$(VERSION) 221 tar -cJvf $(NAME)-$(VERSION).tar.xz $(NAME)-$(VERSION)