diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2016-03-04 15:11:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2016-03-04 15:11:08 +0000 |
commit | bfe43f07a4324526ca32a368a0d64e86333e4b74 (patch) | |
tree | ca345166acbc71c3fc3b3e8004a89fe22d750f3d /distrib | |
parent | a9db67657a20faf74a677d11ce4abd9ee5f5b539 (diff) |
remove CSRG BSD-licensed mknod builtin code which was previously used to
accelerate install/upgrade time MAKEDEV runs. That allows ramdisk ksh
to be pledged, without needing "dpath". We'll solve the performance issues
a different way (soon).
ok otto espie natano tb tobiasu rpe
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/special/ksh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/special/ksh/Makefile b/distrib/special/ksh/Makefile index 00cd33dc112..0ac9d479f3e 100644 --- a/distrib/special/ksh/Makefile +++ b/distrib/special/ksh/Makefile @@ -1,12 +1,12 @@ -# $OpenBSD: Makefile,v 1.2 2015/10/10 00:10:07 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 2016/03/04 15:11:07 deraadt Exp $ PROG= ksh SRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c eval.c \ - exec.c expr.c history.c io.c jobs.c lex.c mail.c main.c mknod.c \ + exec.c expr.c history.c io.c jobs.c lex.c mail.c main.c \ misc.c path.c shf.c syn.c table.c trap.c tree.c tty.c var.c \ version.c vi.c -DEFS= -Wall -DMKNOD +DEFS= -Wall CFLAGS+=${DEFS} -I. -I${.CURDIR}/../../../bin/ksh -I${.CURDIR}/../../../lib/libc/gen MAN= ksh.1 sh.1 |