diff options
author | dholland <dholland> | 2011-07-03 01:36:58 +0000 |
---|---|---|
committer | dholland <dholland> | 2011-07-03 01:36:58 +0000 |
commit | 060bfc04a5b64fb0b8699c93293e9f29213ab46b (patch) | |
tree | 74a97f1e67d49ef95fb95b84d62d65fb10b1a5a2 | |
parent | dc7df14b43aa37c2f0ec570c34df243171e14fd8 (diff) | |
download | pkgsrc-060bfc04a5b64fb0b8699c93293e9f29213ab46b.tar.gz |
Set $SHELL in the environment so it doesn't end up trying to use zsh, or
worse, a csh, on a trivial shell script.
-rw-r--r-- | net/delegate/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/delegate/Makefile b/net/delegate/Makefile index 683a1560da7..3f5c3432a03 100644 --- a/net/delegate/Makefile +++ b/net/delegate/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2010/02/19 19:31:59 joerg Exp $ +# $NetBSD: Makefile,v 1.42 2011/07/03 01:36:58 dholland Exp $ DISTNAME= delegate9.9.1 PKGNAME= delegate-9.9.1 @@ -28,6 +28,8 @@ OWN_DIRS_PERMS+=${VARBASE}/spool/delegate-nobody nobody nobody 755 INSTALLATION_DIRS= sbin share/doc/delegate +MAKE_ENV+= SHELL=${CONFIG_SHELL} + pre-build: @${ECHO} "ADMIN=${DELEGATE_MANAGER}" >> ${WRKSRC}/DELEGATE_CONF |