diff options
author | 2014-07-09 18:59:10 +0000 | |
---|---|---|
committer | 2014-07-09 18:59:10 +0000 | |
commit | 5c024794caa3888d78ef301a7d1ab858b1a38d25 (patch) | |
tree | 8d8fd0a899975ead60b066f28135e80004b94ed4 | |
parent | Merge memory leak fix from NetBSD's dir.c revision 1.20, but actually (diff) | |
download | wireguard-openbsd-5c024794caa3888d78ef301a7d1ab858b1a38d25.tar.xz wireguard-openbsd-5c024794caa3888d78ef301a7d1ab858b1a38d25.zip |
"mkstr was intended for the limited architecture of the PDP 11 family."
Time moves on, memory gets cheaper. There's no need for mkstr or xstr.
ok deraadt
-rw-r--r-- | usr.bin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 5c74c6c1957..5432f0ccd5b 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.142 2014/07/08 21:30:50 tedu Exp $ +# $OpenBSD: Makefile,v 1.143 2014/07/09 18:59:10 tedu Exp $ .include <bsd.own.mk> @@ -14,7 +14,7 @@ SUBDIR= apply arch at aucat audioctl awk banner \ libtool lndir \ locale locate lock logger login logname look lorder \ m4 mail make man mandoc mesg mg \ - midiplay mixerctl mkdep mklocale mkstr mktemp modstat nc netstat \ + midiplay mixerctl mkdep mklocale mktemp modstat nc netstat \ newsyslog \ nfsstat nice nm nl nohup oldrdist pagesize passwd paste patch pctr \ pkg-config pkill \ @@ -28,7 +28,7 @@ SUBDIR= apply arch at aucat audioctl awk banner \ ul uname unexpand unifdef uniq units \ unvis users uudecode uuencode vacation vi vis vmstat w wall wc \ what which who whois write x99token xargs xinstall \ - xstr yacc yes + yacc yes .if (${YP:L} == "yes") SUBDIR+=ypcat ypmatch ypwhich |