From 02d4de15336d900ad27856f04a5c83fbaffd466d Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Wed, 29 Aug 2001 09:11:03 +0000 Subject: [PATCH] Fixed world breakage. mkdir was not copied to ${INSTALLTMP}, but it is used by src/include/Makefile in the SHARED=symlinks case. --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 4d5e4213b7dc..5c7fd0cec9d0 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -323,7 +323,7 @@ everything: installworld: mkdir -p ${INSTALLTMP} for prog in [ awk cat chflags chmod chown date echo egrep find grep \ - ln make makewhatis mtree mv perl rm sed sh sysctl \ + ln make makewhatis mkdir mtree mv perl rm sed sh sysctl \ test true uname wc zic; do \ cp `which $$prog` ${INSTALLTMP}; \ done