aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2001-03-22 09:54:25 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2001-03-22 09:54:25 +0000
commitd9d1a7bb942b8be8131ffa5ca67596e71aded418 (patch)
treef866540d236c14681df5cafacbae806709545bac /Makefile.inc1
parenta91f68bca6f15c83f6aff9a1685a411e7c388938 (diff)
downloadsrc-d9d1a7bb942b8be8131ffa5ca67596e71aded418.tar.gz
src-d9d1a7bb942b8be8131ffa5ca67596e71aded418.zip
Enhancement to 1.99 -> 1.100.
Avoid EPERM from ln(1) in a different (proper) way.
Notes
Notes: svn path=/head/; revision=74645
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc13
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 39cc7fccf588..362ff140e943 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -230,7 +230,6 @@ buildworld:
for dir in bin games include lib sbin; do \
rm -rf ${WORLDTMP}/usr/$$dir; \
done
- rm -f ${WORLDTMP}/sys
# XXX - Work-around for broken cc/cc_tools/Makefile.
# This is beyond dirty...
rm -f ${OBJTREE}${.CURDIR}/gnu/usr.bin/cc/cc_tools/.depend
@@ -241,7 +240,7 @@ buildworld:
.for _dir in ${INCDIRS}
mkdir -p ${WORLDTMP}/usr/include/${_dir}
.endfor
- ln -sf ${.CURDIR}/sys ${WORLDTMP}/sys
+ ln -sf ${.CURDIR}/sys ${WORLDTMP}
@echo
@echo "--------------------------------------------------------------"
@echo ">>> stage 1: bootstrap tools"