diff options
author | asami <asami@FreeBSD.org> | 1996-09-16 00:56:30 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-09-16 00:56:30 +0000 |
commit | d5e79a7e93d6296bbd922598e5642a58d8faf64a (patch) | |
tree | 44eafd1224b3171d1d66d845dee61d8ca820faab | |
parent | 4126164f13965236f2834d29f7fc2d87ae8a7874 (diff) | |
download | FreeBSD-ports-d5e79a7e93d6296bbd922598e5642a58d8faf64a.zip FreeBSD-ports-d5e79a7e93d6296bbd922598e5642a58d8faf64a.tar.gz |
Add pre-clean target to delete ${SCRIPTDIR}/post-install (created
in configure stage).
-rw-r--r-- | print/dvips/Makefile | 4 | ||||
-rw-r--r-- | print/xdvi/Makefile | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/print/dvips/Makefile b/print/dvips/Makefile index 1c2dfa2..86085bb 100644 --- a/print/dvips/Makefile +++ b/print/dvips/Makefile @@ -3,7 +3,7 @@ # Date created: 30 September 1994 # Whom: jmz # -# $Id: Makefile,v 1.9 1995/11/22 13:18:03 asami Exp $ +# $Id: Makefile,v 1.10 1995/12/06 00:35:31 jmz Exp $ # DISTNAME= dvips @@ -22,5 +22,7 @@ EXTRACT_ARGS= < pre-install: @mkdir -p ${PREFIX}/lib/texmf +pre-clean: + @rm -f ${SCRIPTDIR}/post-install .include <bsd.port.mk> diff --git a/print/xdvi/Makefile b/print/xdvi/Makefile index e0ff9e65..9d0eb0c 100644 --- a/print/xdvi/Makefile +++ b/print/xdvi/Makefile @@ -3,7 +3,7 @@ # Date created: 1 October 1994 # Whom: jmz # -# $Id: Makefile,v 1.17 1995/11/22 13:18:35 asami Exp $ +# $Id: Makefile,v 1.18 1996/03/10 09:06:28 asami Exp $ # DISTNAME= xdvi-20 @@ -31,4 +31,7 @@ do-install: @(cd ${WRKSRC}; ${GMAKE} -f Makefile install BINDIR=${PREFIX}/bin) @(cd ${WRKSRC}; install -c -m 755 -o bin MakeTeXPK ${PREFIX}/bin) +pre-clean: + @rm -f ${SCRIPTDIR}/post-install + .include <bsd.port.mk> |