mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Sync the list of headers visible with SHARED=symlinks with those
visible with SHARED=copies. Inspired by: njl
This commit is contained in:
parent
84875e4d6f
commit
829ba4de63
1 changed files with 6 additions and 1 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue