Geeze, I'm really off-target on my Makefile hacking tonite. Guess I'll

go to bed. :-)  Revert this change which would have broken the ${DESTDIR}
relative link when chrooted.

Pointed-Out-To-My-Embarassment-By: bde
This commit is contained in:
Jordan K. Hubbard 1996-12-30 07:38:51 +00:00
parent c94d336e8b
commit 89eac9644c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=21044

View File

@ -1,5 +1,5 @@
# From: @(#)Makefile 8.2 (Berkeley) 1/4/94
# $Id: Makefile,v 1.45 1996/10/17 18:44:56 jkh Exp $
# $Id: Makefile,v 1.46 1996/12/30 04:52:54 jkh Exp $
#
# Doing a make install builds /usr/include
#
@ -107,9 +107,9 @@ symlinks:
@${ECHO} "Setting up symlinks to kernel source tree..."
.for i in ${LDIRS} ${LUDIR}
rm -rf ${DESTDIR}/usr/include/$i
ln -s ${DESTDIR}/sys/$i ${DESTDIR}/usr/include/$i
ln -s /sys/$i ${DESTDIR}/usr/include/$i
.endfor
rm -rf ${DESTDIR}/usr/include/machine
ln -s ${DESTDIR}/sys/${MACHINE}/include ${DESTDIR}/usr/include/machine
ln -s /sys/${MACHINE}/include ${DESTDIR}/usr/include/machine
.include <bsd.prog.mk>