diff options
author | jlam <jlam> | 2005-07-29 18:32:17 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-07-29 18:32:17 +0000 |
commit | e332a91834bb386e4671f2f05876dd7d7954fa77 (patch) | |
tree | d95985cff341d15fd04e23c8993836a50f19ab9a /shells/pdksh | |
parent | 4186535d1b2b78a4a3bb1fa5c9e37a58f90b6ca9 (diff) | |
download | pkgsrc-e332a91834bb386e4671f2f05876dd7d7954fa77.tar.gz |
* Separate out the shell registration into a separately unpacked script
+SHELL.
* Turn PKG_REGISTER_SHELLS into a variable that can be set in the shell
environment so that admins can make a choice when installing from
binary packages.
* PKG_SHELL is now a list of paths, and if the path is relative, then it
is taken to be relative to ${PREFIX}. Convert packages that set
PKG_SHELL to take advantage of this new feature by changing the full
paths to the shells into relative paths.
Diffstat (limited to 'shells/pdksh')
-rw-r--r-- | shells/pdksh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shells/pdksh/Makefile b/shells/pdksh/Makefile index 419e616387a..139a4cb6015 100644 --- a/shells/pdksh/Makefile +++ b/shells/pdksh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2005/04/11 21:47:21 tv Exp $ +# $NetBSD: Makefile,v 1.9 2005/07/29 18:32:18 jlam Exp $ # DISTNAME= pdksh-5.2.14 @@ -21,6 +21,6 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --program-prefix=pd USE_PKGINSTALL= yes -PKG_SHELL= ${PREFIX}/bin/pdksh +PKG_SHELL= bin/pdksh .include "../../mk/bsd.pkg.mk" |