diff options
author | agc <agc@pkgsrc.org> | 2001-10-26 11:46:54 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-10-26 11:46:54 +0000 |
commit | a15f55698b3cc4bace34e558bdd715ef0a93eaaf (patch) | |
tree | ad5ea09ac5e179d1b275338c0e740688a1fa336f /mail | |
parent | 2772849eadf8855967db52f6f1a6540d61af9e12 (diff) | |
download | pkgsrc-a15f55698b3cc4bace34e558bdd715ef0a93eaaf.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')
-rw-r--r-- | mail/exmh/Makefile | 6 | ||||
-rw-r--r-- | mail/exmh/files/build (renamed from mail/exmh/scripts/build) | 2 | ||||
-rw-r--r-- | mail/exmh/files/install (renamed from mail/exmh/scripts/install) | 2 |
3 files changed, 5 insertions, 5 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" diff --git a/mail/exmh/scripts/build b/mail/exmh/files/build index a8bdef655ec..6d29e93f097 100644 --- a/mail/exmh/scripts/build +++ b/mail/exmh/files/build @@ -1,6 +1,6 @@ #! /bin/sh # -# $NetBSD: build,v 1.4 2001/10/22 21:46:50 agc Exp $ +# $NetBSD: build,v 1.1 2001/10/26 11:46:55 agc Exp $ # FreeBSD Id: build,v 1.5 1997/08/21 08:09:56 peter Exp # diff --git a/mail/exmh/scripts/install b/mail/exmh/files/install index 5d41be2d3a0..a13b9530918 100644 --- a/mail/exmh/scripts/install +++ b/mail/exmh/files/install @@ -1,6 +1,6 @@ #! /bin/sh # -# $NetBSD: install,v 1.3 2000/03/06 10:25:11 wulf Exp $ +# $NetBSD: install,v 1.1 2001/10/26 11:46:55 agc Exp $ # FreeBSD Id: install,v 1.2 1996/12/31 21:27:03 peter Exp # |