Date: Sun, 1 Sep 1996 03:22:43 -0700 (PDT) From: Peter Wemm <peter> To: CVS-committers, cvs-all, cvs-bin Subject: cvs commit: src/bin/sh Makefile TOUR alias.c alias.h arith.h arith.y arith_lex.l builtins.def cd.c error.c error.h eval.c eval.h exec.c exec.h expand.c expand.h histedit.c init.h input.c input.h jobs.c jobs.h machdep.h mail.c mail.h main.c main.h memalloc.c memalloc.h miscbltin.c mkbuiltins mkinit.c mknodes.c mksyntax.c mktokens myhistedit.h mystring.c mystring.h nodes.c.pat nodetypes options.c options.h output.c output.h parser.c parser.h redir.c redir.h sh.1 shell.h show.c show.h trap.c trap.h var.c var.h builtins errmsg.c errmsg.h mksignames.c src/bin/sh/bltin bltin.h echo.1 echo.c src/bin/sh/funcs cmv dirs kill login newgrp popd pushd suspend Message-ID: <199609011022.DAA19192@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
peter 96/09/01 03:22:40
Modified: bin/sh Makefile TOUR alias.c alias.h arith.h arith.y
arith_lex.l builtins.def cd.c error.c error.h
eval.c eval.h exec.c exec.h expand.c expand.h
histedit.c init.h input.c input.h jobs.c jobs.h
machdep.h mail.c mail.h main.c main.h memalloc.c
memalloc.h miscbltin.c mkbuiltins mkinit.c
mknodes.c mksyntax.c mktokens myhistedit.h
mystring.c mystring.h nodes.c.pat nodetypes
options.c options.h output.c output.h parser.c
parser.h redir.c redir.h sh.1 shell.h show.c show.h
trap.c trap.h var.c var.h
bin/sh/bltin bltin.h echo.1 echo.c
bin/sh/funcs cmv dirs kill login newgrp popd pushd suspend
Removed: bin/sh builtins errmsg.c errmsg.h mksignames.c
Log:
Merge of 4.4-Lite2 sh source, plus some gcc -Wall cleaning. This is a
merge of parallel duplicate work by Steve Price and myself. :-]
There are some changes to the build that are my fault... mkinit.c was
trying (poorly) to duplicate some of the work that make(1) is designed to
do. The Makefile hackery is my fault too, the depend list was incomplete
because of some explicit OBJS+= entries, so mkdep wasn't picking up their
source file #includes.
This closes a pile of /bin/sh PR's, but not all of them..
Submitted by: Steve Price <steve@bonsai.hiwaay.net>, peter
Revision Changes Path
1.13 +26 -38 src/bin/sh/Makefile
1.3 +2 -2 src/bin/sh/TOUR
1.4 +17 -8 src/bin/sh/alias.c
1.3 +6 -3 src/bin/sh/alias.h
1.2 +1 -0 src/bin/sh/arith.h
1.3 +41 -26 src/bin/sh/arith.y
1.5 +28 -30 src/bin/sh/arith_lex.l
1.2 +1 -0 src/bin/sh/builtins.def
1.6 +31 -27 src/bin/sh/cd.c
1.4 +53 -46 src/bin/sh/error.c
1.3 +8 -16 src/bin/sh/error.h
1.5 +144 -76 src/bin/sh/eval.c
1.3 +12 -12 src/bin/sh/eval.h
1.5 +48 -41 src/bin/sh/exec.c
1.3 +14 -21 src/bin/sh/exec.h
1.7 +280 -108 src/bin/sh/expand.c
1.3 +8 -15 src/bin/sh/expand.h
1.5 +42 -10 src/bin/sh/histedit.c
1.3 +5 -11 src/bin/sh/init.h
1.5 +20 -15 src/bin/sh/input.c
1.3 +14 -28 src/bin/sh/input.h
1.5 +86 -55 src/bin/sh/jobs.c
1.3 +14 -18 src/bin/sh/jobs.h
1.3 +3 -3 src/bin/sh/machdep.h
1.3 +5 -3 src/bin/sh/mail.c
1.3 +3 -7 src/bin/sh/mail.h
1.5 +75 -23 src/bin/sh/main.c
1.3 +6 -9 src/bin/sh/main.h
1.3 +17 -10 src/bin/sh/memalloc.c
1.3 +15 -32 src/bin/sh/memalloc.h
1.5 +218 -210 src/bin/sh/miscbltin.c
1.5 +13 -15 src/bin/sh/mkbuiltins
1.6 +37 -81 src/bin/sh/mkinit.c
1.3 +94 -50 src/bin/sh/mknodes.c
1.6 +67 -45 src/bin/sh/mksyntax.c
1.3 +2 -2 src/bin/sh/mktokens
1.3 +9 -2 src/bin/sh/myhistedit.h
1.3 +3 -2 src/bin/sh/mystring.c
1.3 +6 -13 src/bin/sh/mystring.h
1.3 +65 -75 src/bin/sh/nodes.c.pat
1.3 +4 -2 src/bin/sh/nodetypes
1.7 +39 -20 src/bin/sh/options.c
1.3 +25 -29 src/bin/sh/options.h
1.3 +23 -12 src/bin/sh/output.c
1.3 +23 -34 src/bin/sh/output.h
1.12 +166 -81 src/bin/sh/parser.c
1.3 +19 -19 src/bin/sh/parser.h
1.5 +18 -18 src/bin/sh/redir.c
1.3 +8 -15 src/bin/sh/redir.h
1.7 +10 -8 src/bin/sh/sh.1
1.4 +6 -4 src/bin/sh/shell.h
1.3 +95 -32 src/bin/sh/show.c
1.2 +2 -1 src/bin/sh/show.h
1.4 +58 -29 src/bin/sh/trap.c
1.3 +10 -17 src/bin/sh/trap.h
1.6 +48 -15 src/bin/sh/var.c
1.3 +17 -26 src/bin/sh/var.h
1.5 +2 -2 src/bin/sh/bltin/bltin.h
1.3 +3 -3 src/bin/sh/bltin/echo.1
1.4 +7 -3 src/bin/sh/bltin/echo.c
1.3 +2 -2 src/bin/sh/funcs/cmv
1.3 +2 -2 src/bin/sh/funcs/dirs
1.3 +2 -2 src/bin/sh/funcs/kill
1.3 +2 -2 src/bin/sh/funcs/login
1.3 +2 -2 src/bin/sh/funcs/newgrp
1.3 +2 -2 src/bin/sh/funcs/popd
1.3 +2 -2 src/bin/sh/funcs/pushd
1.3 +2 -2 src/bin/sh/funcs/suspend
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199609011022.DAA19192>
