diff options
| author | Garrett D'Amore <garrett@nexenta.com> | 2010-10-15 11:23:37 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@nexenta.com> | 2010-10-15 11:23:37 -0700 |
| commit | 5d4606d7857958f486a2dc8cb37c99a0b72335d6 (patch) | |
| tree | 5fddf3b585a43a2b9e0d448daa94d2fd38d86d7d /usr/src/cmd/ksh | |
| parent | 5800d06638085733a3095e8452c2f9437dc815a0 (diff) | |
| download | illumos-joyent-5d4606d7857958f486a2dc8cb37c99a0b72335d6.tar.gz | |
347 convert xpg4/sh and ilk to use ksh93
Reviewed by: richlowe@richlowe.net
Reviewed by: johnsonnenschein@gmail.com
Reviewed by: guido+illumos.org@berhoerster.name
Reviewed by: gwr@nexenta.com
Approved by: gwr@nexenta.com
Diffstat (limited to 'usr/src/cmd/ksh')
| -rw-r--r-- | usr/src/cmd/ksh/builtins/Makefile | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/usr/src/cmd/ksh/builtins/Makefile b/usr/src/cmd/ksh/builtins/Makefile index 69a86bbaae..bdf1665d8f 100644 --- a/usr/src/cmd/ksh/builtins/Makefile +++ b/usr/src/cmd/ksh/builtins/Makefile @@ -24,7 +24,9 @@ # Use is subject to license terms. # -SHELL=/usr/bin/ksh93 +# +# Copyright 2010 Nexenta Systems, Inc. All rights reserved. +# PROG= alias ALIASPROG= \ @@ -59,10 +61,28 @@ ALIASPROG= \ wait \ wc +XPG4ALIASPROG= \ + bg \ + cd \ + command \ + fc \ + fg \ + getopts \ + hash \ + jobs \ + kill \ + read \ + test \ + type \ + ulimit \ + umask \ + unalias \ + wait + include ../../Makefile.cmd $(SPARC_BLD)include ../../Makefile.cmd.64 -ROOTALIASPROG= $(ALIASPROG:%=$(ROOTBIN)/%) +ROOTALIASPROG= $(ALIASPROG:%=$(ROOTBIN)/%) $(XPG4ALIASPROG:%=$(ROOTXPG4BIN)/%) FILEMODE= 555 @@ -73,6 +93,9 @@ all: $(PROG) $(ROOTBIN)/%: $(ROOTBIN)/alias $(INS.link) +$(ROOTXPG4BIN)/%: $(ROOTBIN)/alias + $(INS.link) + .KEEP_STATE: # Set common AST build flags (e.g., needed to support the math stuff). |
