diff options
author | max <max@FreeBSD.org> | 1997-02-04 19:09:38 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-02-04 19:09:38 +0800 |
commit | cd8d08426a04675230ce2646026464c85f817c49 (patch) | |
tree | 9ad265cbf0be3674304e26be63f4bfa6847dd651 /japanese/ptex-base | |
parent | f07b753115ca5df32cd5af936c16539bde6948da (diff) | |
download | freebsd-ports-gnome-cd8d08426a04675230ce2646026464c85f817c49.tar.gz freebsd-ports-gnome-cd8d08426a04675230ce2646026464c85f817c49.tar.zst freebsd-ports-gnome-cd8d08426a04675230ce2646026464c85f817c49.zip |
Instead of removing unnecessary files after extracting tarball,
use --exclude option of tar.
Diffstat (limited to 'japanese/ptex-base')
-rw-r--r-- | japanese/ptex-base/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/japanese/ptex-base/Makefile b/japanese/ptex-base/Makefile index 84cfa91a5f4f..053cb059f1b9 100644 --- a/japanese/ptex-base/Makefile +++ b/japanese/ptex-base/Makefile @@ -3,7 +3,7 @@ # Date created: 5 Nov 1995 # Whom: Hideaki Ohmon <ohmon@sfc.keio.ac.jp> # -# $Id: Makefile,v 1.14 1996/11/13 12:41:09 asami Exp $ +# $Id: Makefile,v 1.15 1997/01/22 04:35:58 max Exp $ # DISTNAME= ptex3.1415.p2.1.4 @@ -103,9 +103,9 @@ pre-install: (echo "(Don't worry about the following \"*** Error code 1\"s)" ; \ exit 1) .endif - @(cd ${PREFIX}/lib ; tar zxf ${DISTDIR}/lib-6.9.tar.gz) - @${RM} -rf ${PREFIX}/lib/texmf/tex/latex2e/base/* - @(cd ${PREFIX}/lib ; tar zxf ${DISTDIR}/${LIB_FILE}) + @tar --exclude 'texmf/tex/latex2e/base/*' -zx -C ${PREFIX}/lib \ + -f ${DISTDIR}/lib-6.9.tar.gz + @tar -zx -C ${PREFIX}/lib -f ${DISTDIR}/${LIB_FILE} post-install: @echo -n "Stripping the binary files...." |