diff options
author | agc <agc> | 2001-10-26 14:09:59 +0000 |
---|---|---|
committer | agc <agc> | 2001-10-26 14:09:59 +0000 |
commit | 413aeecacaaf5d23de6324803da96b7827f553ce (patch) | |
tree | b205911a0374704e6a0378d88ec3a73be474ef3f /comms | |
parent | 45aacf270ab31d90097aeda2ff6652d63d3dd016 (diff) | |
download | pkgsrc-413aeecacaaf5d23de6324803da96b7827f553ce.tar.gz |
At present, if there is a pre-<target> or post-<target> script in
the scripts/ directory, it will be run automatically as part of
the build process, by bsd.pkg.mk. There are now exactly 5 packages
in pkgsrc which use this facility, and yet, for every package build,
the existence of a script is checked by bsd.pkg.mk once before the
target is executed, and once afterwards. This incurs needless
overhead.
Move the separate pre- and post- script handling out of bsd.pkg.mk into
the individual package Makefiles, where it's much more obvious what is
happening, anyway.
Diffstat (limited to 'comms')
-rw-r--r-- | comms/mgetty+sendfax/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/comms/mgetty+sendfax/Makefile b/comms/mgetty+sendfax/Makefile index 7314209e672..a6a639b78c5 100644 --- a/comms/mgetty+sendfax/Makefile +++ b/comms/mgetty+sendfax/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2001/09/27 23:17:50 jlam Exp $ +# $NetBSD: Makefile,v 1.18 2001/10/26 14:10:00 agc Exp $ # FreeBSD Id: Makefile,v 1.25 1998/07/16 06:44:37 vanilla Exp # @@ -24,6 +24,9 @@ MAKE_ENV+= MGETTY_CONFDIR=${MGETTY_CONFDIR} USE_BUILDLINK_ONLY= # defined +do-configure: + cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure + post-configure: ${SED} -e 's#$${INSTALL_DATA_DIR}#${INSTALL_DATA_DIR}#' \ -e 's#$${MGETTY_CONFDIR}#${MGETTY_CONFDIR}#' \ |