Sync the list of headers visible with SHARED=symlinks with those

visible with SHARED=copies.

Inspired by:	njl
This commit is contained in:
Ruslan Ermilov 2005-03-02 07:40:18 +00:00
parent 84875e4d6f
commit 829ba4de63
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=142992

View File

@ -159,12 +159,17 @@ symlinks:
ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
done
.endfor
.for i in ${LSUBDIRS}
.for i in ${LSUBDIRS:Ndev/bktr}
cd ${.CURDIR}/../sys/$i; \
for h in *.h; do \
ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
done
.endfor
cd ${.CURDIR}/../sys/dev/bktr; \
for h in ioctl_*.h; do \
ln -fs ../../../../sys/dev/bktr/$$h \
${DESTDIR}${INCLUDEDIR}/dev/bktr; \
done
.for i in ${LSUBSUBDIRS}
cd ${.CURDIR}/../sys/$i; \
for h in *.h; do \