diff options
author | agc <agc> | 2001-10-26 11:46:54 +0000 |
---|---|---|
committer | agc <agc> | 2001-10-26 11:46:54 +0000 |
commit | e15d20d081484aae46ae75ff98f2bf0d7e1085fe (patch) | |
tree | ad5ea09ac5e179d1b275338c0e740688a1fa336f /mail/exmh/Makefile | |
parent | aefc133e1a853f432b3bfed449a24043d1f1260d (diff) | |
download | pkgsrc-e15d20d081484aae46ae75ff98f2bf0d7e1085fe.tar.gz |
Since the build and install scripts are executed directly by the package
Makefile, move them from scripts/ to files/ to make it obvious that the
scripts invocations in bsd.pkg.mk are not being used.
Diffstat (limited to 'mail/exmh/Makefile')
-rw-r--r-- | mail/exmh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/exmh/Makefile b/mail/exmh/Makefile index 6a2dcaa5a73..e79c87cc489 100644 --- a/mail/exmh/Makefile +++ b/mail/exmh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2001/10/22 21:37:59 agc Exp $ +# $NetBSD: Makefile,v 1.28 2001/10/26 11:46:54 agc Exp $ # FreeBSD Id: Makefile,v 1.25 1998/02/15 05:36:54 peter Exp # @@ -32,10 +32,10 @@ TCLSH= tclsh do-build: @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} TCLSH=${TCLSH} \ WISH=${PREFIX}/bin/${WISH} WRKSRC=${WRKSRC} \ - FILESDIR=${FILESDIR} ${SH} ${SCRIPTDIR}/build + FILESDIR=${FILESDIR} ${SH} ${FILESDIR}/build do-install: @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} \ - WRKSRC=${WRKSRC} ${SH} ${SCRIPTDIR}/install + WRKSRC=${WRKSRC} ${SH} ${FILESDIR}/install .include "../../mk/bsd.pkg.mk" |