about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-05-03 21:53:48 +0000
committerJune McEnroe <june@causal.agency>2020-05-03 21:53:48 +0000
commit382728fda878048b7da1fa6c4c338bd216475a12 (patch)
treebfb94a0ad6cd57fcaf371168d6c87a87d8c4e01e
parentMark tarballs .PRECIOUS (diff)
downloadexman-382728fda878048b7da1fa6c4c338bd216475a12.tar.gz
exman-382728fda878048b7da1fa6c4c338bd216475a12.zip
Restrict extracted paths more tightly
199M -> 136M
-rw-r--r--Makefile16
1 files changed, 9 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 492064c..80c41b6 100644
--- a/Makefile
+++ b/Makefile
@@ -24,28 +24,30 @@ all: exman ${SYSTEMS}
 	mkdir -p $@
 	${TAR} -x -f $< -C $@ --strip-components ${STRIP.$@} ${FILES.$@}
 
-.PRECIOUS: netbsd-man.tar netbsd-comp.tar
-
 netbsd: netbsd-man.tar netbsd-comp.tar
 	mkdir -p $@
 	${TAR} -x -f netbsd-man.tar -C $@ --strip-components ${STRIP.$@} ${FILES.$@}
 	${TAR} -x -f netbsd-comp.tar -C $@ --strip-components ${STRIP.$@} ${FILES.$@}
 
-.PRECIOUS: openbsd-man.tar openbsd-comp.tar
+.PRECIOUS: netbsd-man.tar netbsd-comp.tar
 
 openbsd: openbsd-man.tar openbsd-comp.tar
 	mkdir -p $@
 	${TAR} -x -f openbsd-man.tar -C $@ --strip-components ${STRIP.$@} ${FILES.$@}
 	${TAR} -x -f openbsd-comp.tar -C $@ --strip-components ${STRIP.$@} ${FILES.$@}
 
-FILES.freebsd = ./usr/share/man/
-FILES.netbsd = ./usr/share/man/
-FILES.openbsd = ./usr/share/man/
+.PRECIOUS: openbsd-man.tar openbsd-comp.tar
+
+FILES.freebsd = './usr/share/man/man[1-9]/'
+FILES.netbsd = './usr/share/man/man[1-9]*/'
+FILES.openbsd = './usr/share/man/man[1-9]*/'
+FILES.linux = '*/man[1-9]/'
+FILES.posix = '*/man[0-3]p/'
 
 STRIP.freebsd = 4
-STRIP.linux = 1
 STRIP.netbsd = 4
 STRIP.openbsd = 4
+STRIP.linux = 1
 STRIP.posix = 1
 
 clean:
8-09-13Avoid uninitialized x in uiReadJune McEnroe 2018-09-13Add IRCDefault to colors enumJune McEnroe 2018-09-13Return a format->split even at the end of the stringJune McEnroe 2018-09-13Fix weird tab-complete after commaJune McEnroe I have no idea why I did this. 2018-09-13Rewrite UI againJune McEnroe The persistent topic is gone and the status line is now at the top. The status formatting still needs to be reworked. I also want to try showing the nick in the input window so it really looks like your next message. 2018-09-12Add note about C-oJune McEnroe Why are there so few well usable ctrl key bindings? 2018-09-12Use formatParse split to position input cursorJune McEnroe 2018-09-12Factor out IRC formatting parsingJune McEnroe 2018-09-11Add /help equivalent to /manJune McEnroe 2018-09-11Don't render every PM as a pingJune McEnroe 2018-09-11Add urlOpenMatchJune McEnroe 2018-09-10Depend on man.sh for chroot.tar targetJune McEnroe 2018-09-10Set LESSSECURE=1 in man.shJune McEnroe Ridiculous. 2018-09-10Add /man commandJune McEnroe 2018-09-10Install man page in chrootJune McEnroe 2018-09-10Install man pageJune McEnroe 2018-09-10Split keys into subsections and document colorsJune McEnroe 2018-09-10Add "blank" lines to chatte.1June McEnroe 2018-09-10Document key bindings in chatte.1June McEnroe 2018-09-08Document slash commands in chatte.1June McEnroe