Install only types.h from sys/rpc/.

Requested by:		ache
Explained how by:	ru
This commit is contained in:
Pawel Jakub Dawidek 2007-04-13 01:39:33 +00:00
parent 6704017a15
commit 0fdce72711

View File

@ -36,7 +36,7 @@ LHDRS= aio.h errno.h fcntl.h linker_set.h poll.h stdint.h syslog.h \
LDIRS= bsm cam geom net net80211 netatalk netatm netgraph netinet netinet6 \
netipsec ${_netipx} netkey netnatm ${_netncp} netsmb \
nfs nfsclient nfsserver \
pccard rpc sys vm
pccard sys vm
LSUBDIRS= cam/scsi \
dev/acpica dev/an dev/bktr dev/firewire dev/hwpmc \
@ -201,6 +201,9 @@ copies:
${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc
.endif
.endif
cd ${.CURDIR}/../sys/rpc; \
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
${DESTDIR}${INCLUDEDIR}/rpc
symlinks:
@${ECHO} "Setting up symlinks to kernel source tree..."
@ -294,3 +297,8 @@ symlinks:
ln -fs ../../../../sys/fs/cd9660/$$h \
${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
done
cd ${.CURDIR}/../sys/rpc; \
for h in types.h; do \
ln -fs ../../../sys/rpc/$$h \
${DESTDIR}${INCLUDEDIR}/rpc; \
done