diff options
author | obache <obache@pkgsrc.org> | 2006-10-17 12:31:22 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2006-10-17 12:31:22 +0000 |
commit | 72be67100e633619b357e34c18def87f807977bc (patch) | |
tree | 4375a34d7614b094a01605e222abc97887755c8a /shells/osh/Makefile | |
parent | 629507c02f0fead5b3d28334deedbd8855142924 (diff) | |
download | pkgsrc-72be67100e633619b357e34c18def87f807977bc.tar.gz |
Update osh to 060124.
Patch provided by Martin Wilke via PR 34313.
[osh-060124]:
Makefile:
* Added targets for building/installing sh6(1) and glob6(1).
Refer to the README file for further details.
* Removed the `check-sh6' target since the tests were originally
written for osh(1) and sh6(1) as Thompson-shell reimplementations,
not ports.
sh6:
* Changed sh6(1) from being a reimplementation which is compiled from
the same sources as osh(1) to being a port of the original Thompson
shell from Sixth Edition Unix. Refer to the CHANGES_sh-to-sh6 file
for further details.
osh:
C: Treat both `( ; )' and `( & )' as syntax errors.
C: Print the process ID for each command of an asynchronous pipeline,
not just the last command.
C: Added the `newgrp' special command. It is similar to `login'
except that the newgrp(1) utility replaces the current interactive
shell rather than the login(1) utility.
* When opening `/dev/null' is needed for an asynchronous command,
call open(2) w/ the O_RDONLY flag instead of O_RDWR.
Diffstat (limited to 'shells/osh/Makefile')
-rw-r--r-- | shells/osh/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/shells/osh/Makefile b/shells/osh/Makefile index 2bf1fa0d030..fb348ea739d 100644 --- a/shells/osh/Makefile +++ b/shells/osh/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2006/03/04 21:30:39 jlam Exp $ +# $NetBSD: Makefile,v 1.16 2006/10/17 12:31:22 obache Exp $ -DISTNAME= osh-050131 -PKGREVISION= 1 +DISTNAME= osh-060124 CATEGORIES= shells MASTER_SITES= http://jneitzel.sdf1.org/osh/src/ |