aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/Makefile
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-11-20 18:33:59 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-11-20 18:33:59 +0000
commit018d9f6237bf3b90db1cb85873f6b0f717fd9610 (patch)
treeb83cecadf322bae33172651b235b29086676fa5f /bin/sh/Makefile
parentc25081010f223f1e7e5bbaf883d0a9d3e568df8f (diff)
downloadsrc-018d9f6237bf3b90db1cb85873f6b0f717fd9610.tar.gz
src-018d9f6237bf3b90db1cb85873f6b0f717fd9610.zip
Remove the printf builtin command from sh(1), which command is not
used so often that it's worth keeping it as a builtin. Now that all the printf invocations from within the system startup scripts, we can safely remove it. Urged by: sheldonh :) No MFC is planned so far because it may break compatibility and violate POLA.
Notes
Notes: svn path=/head/; revision=86692
Diffstat (limited to 'bin/sh/Makefile')
-rw-r--r--bin/sh/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile
index 14e07ea058bd..64eb0f022a04 100644
--- a/bin/sh/Makefile
+++ b/bin/sh/Makefile
@@ -4,7 +4,7 @@
PROG= sh
SHSRCS= alias.c arith.y arith_lex.l cd.c echo.c error.c eval.c exec.c expand.c \
histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
- mystring.c options.c output.c parser.c printf.c redir.c show.c \
+ mystring.c options.c output.c parser.c redir.c show.c \
test.c trap.c var.c
GENSRCS= builtins.c init.c nodes.c syntax.c
GENHDRS= builtins.h nodes.h syntax.h token.h y.tab.h
@@ -23,8 +23,7 @@ CFLAGS+=-DSHELL -I. -I${.CURDIR}
# CFLAGS+= -g -DDEBUG=2
.PATH: ${.CURDIR}/bltin \
- ${.CURDIR}/../../bin/test \
- ${.CURDIR}/../../usr.bin/printf
+ ${.CURDIR}/../../bin/test
CLEANFILES+= mkinit mkinit.o mknodes mknodes.o \
mksyntax mksyntax.o