diff options
author | tnn <tnn@pkgsrc.org> | 2008-05-23 17:43:31 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-05-23 17:43:31 +0000 |
commit | 073e18d13665763a178fe0318476a0eb8936cd9c (patch) | |
tree | 78530d7de54c851c8cd761485b7e8e1419403ec0 | |
parent | 750c13e4a4a9ce0ccd84cb5ffca878787118faea (diff) | |
download | pkgsrc-073e18d13665763a178fe0318476a0eb8936cd9c.tar.gz |
On OSF1, depend on shells/pdksh and use it for the default shell.
Bump the pkgrevision because if this change.
-rw-r--r-- | devel/bmake/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/bmake/Makefile b/devel/bmake/Makefile index f7ba93efee2..0fe405ab231 100644 --- a/devel/bmake/Makefile +++ b/devel/bmake/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.41 2008/03/09 19:54:28 joerg Exp $ +# $NetBSD: Makefile,v 1.42 2008/05/23 17:43:31 tnn Exp $ # DISTNAME= bmake-20080215 +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= # empty DISTFILES= # empty @@ -36,6 +37,11 @@ BOOTSTRAP_ARGS= -q -o ${OPSYS} --prefix=${PREFIX} \ BOOTSTRAP_ARGS+= --with-defshell=/usr/xpg4/bin/sh .endif +.if ${OPSYS} == "OSF1" +DEPENDS+= pdksh-[0-9]*:../../shells/pdksh +BOOTSTRAP_ARGS+= --with-defshell=${PREFIX}/bin/pdksh +.endif + do-extract: ${CP} -R ${FILESDIR} ${WRKSRC} |