diff options
author | frueauf <frueauf> | 1998-02-15 10:41:05 +0000 |
---|---|---|
committer | frueauf <frueauf> | 1998-02-15 10:41:05 +0000 |
commit | 2dd5ef54c4d026146a28ee72f955728ec9410cc5 (patch) | |
tree | 80c2132d9fbbb7dc406923396943e112213dc1c9 /editors | |
parent | 173b9009fb729b8470385a673d18c8c61ae3e4dc (diff) | |
download | pkgsrc-2dd5ef54c4d026146a28ee72f955728ec9410cc5.tar.gz |
refine handling of PLIST_SRC as suggested by Hubert Feyrer.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xemacs20/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/editors/xemacs20/Makefile b/editors/xemacs20/Makefile index 40d80c800f9..9635419313d 100644 --- a/editors/xemacs20/Makefile +++ b/editors/xemacs20/Makefile @@ -3,7 +3,7 @@ # Date created: 26 August 1997 # Whom: Michael Elbel (me) # -# $NetBSD: Makefile,v 1.12 1998/02/14 22:19:05 frueauf Exp $ +# $NetBSD: Makefile,v 1.13 1998/02/15 10:41:05 frueauf Exp $ # FreeBSD Id: Makefile,v 1.1.1.1 1997/09/03 19:27:57 gj Exp # @@ -72,14 +72,14 @@ DCOMPRESSUFFIX= .gz DCOMPRESSUFFIX= .endif +PLIST_SRC= ${WRKDIR}/PLIST.tmp + pre-configure: @echo "To compile in the MULE features, set the environment variable USE_MULE" pre-install: - @sed "s,@.GZ@,${DCOMPRESSUFFIX}," ${PKGDIR}/PLIST \ - > ${PKGDIR}/PLIST.tmp - -PLIST_SRC= ${PKGDIR}/PLIST.tmp + sed "s,@.GZ@,${DCOMPRESSUFFIX}," ${PKGDIR}/PLIST \ + > ${PLIST_SRC} post-install: .for file in b2m ctags etags gnuclient xemacs-20.3 @@ -90,7 +90,4 @@ post-install: ${.CURDIR}/work/xemacs-20.3/lib-src/gzip-el.sh ${PREFIX}/lib/xemacs-20.3/lisp .endif -pre-clean: - @${RM} -f ${PKGDIR}/PLIST.tmp - .include <bsd.port.mk> |