diff options
author | jlam <jlam> | 2005-07-29 18:32:17 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-07-29 18:32:17 +0000 |
commit | 12ed8d4310b594900a0edcfbce2390df6ad30a37 (patch) | |
tree | d95985cff341d15fd04e23c8993836a50f19ab9a /shells/esh | |
parent | d3b699c423a02501afce2b121f99b0855d30d7b1 (diff) | |
download | pkgsrc-12ed8d4310b594900a0edcfbce2390df6ad30a37.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/esh')
-rw-r--r-- | shells/esh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shells/esh/Makefile b/shells/esh/Makefile index f5012fc93ad..65f216986ba 100644 --- a/shells/esh/Makefile +++ b/shells/esh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2005/06/17 03:50:33 jlam Exp $ +# $NetBSD: Makefile,v 1.20 2005/07/29 18:32:17 jlam Exp $ DISTNAME= esh-0.8 CATEGORIES= shells @@ -11,7 +11,7 @@ INFO_FILES= esh.info WRKSRC= ${WRKDIR}/esh USE_PKGINSTALL= yes -PKG_SHELL= ${PREFIX}/bin/esh +PKG_SHELL= bin/esh INSTALLATION_DIRS= bin info do-install: |