diff options
| author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2007-04-13 01:39:33 +0000 |
|---|---|---|
| committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2007-04-13 01:39:33 +0000 |
| commit | 0fdce72711317a999d637480a6e53986d563135a (patch) | |
| tree | 1ad1235c00daf4671fd7b3326e3c633ea8295454 /include | |
| parent | 6704017a15e61650bbf1e979fc4c50a051cacbd8 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/Makefile b/include/Makefile index 018103594969..0dd03063b191 100644 --- a/include/Makefile +++ b/include/Makefile @@ -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 |
