install sys/opencrypto include files in /usr/include/crypto

This commit is contained in:
Sam Leffler 2002-10-04 20:44:28 +00:00
parent f4bf433552
commit 3feb456215
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104489
2 changed files with 8 additions and 1 deletions

View File

@ -11,6 +11,8 @@
scsi
..
..
crypto
..
dev
an
..

View File

@ -83,7 +83,7 @@ INCSLINKS+= posix4/$i ${INCLUDEDIR}/$i
.endfor
copies:
.for i in ${LDIRS} ${LSYMSUBDIRS} machine
.for i in ${LDIRS} ${LSYMSUBDIRS} machine crypto
if [ -L ${DESTDIR}/usr/include/$i ]; then \
rm -f ${DESTDIR}/usr/include/$i; \
fi
@ -95,6 +95,9 @@ copies:
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
${DESTDIR}/usr/include/$i
.endfor
cd ${.CURDIR}/../sys; \
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 opencrypto/*.h \
${DESTDIR}/usr/include/crypto
.if exists(${.CURDIR}/../sys/${MACHINE_ARCH}/include)
cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include; \
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
@ -112,6 +115,8 @@ symlinks:
rm -rf ${DESTDIR}/usr/include/$i
ln -s ../../sys/$i ${DESTDIR}/usr/include/$i
.endfor
rm -rf ${DESTDIR}/usr/include/crypto
ln -s ../../sys/opencrypto ${DESTDIR}/usr/include/crypto
.for i in ${LSYMSUBDIRS}
rm -rf ${DESTDIR}/usr/include/$i
ln -s ../../../sys/$i ${DESTDIR}/usr/include/$i