diff options
| author | Craig Rodrigues <rodrigc@FreeBSD.org> | 2007-02-11 14:01:32 +0000 |
|---|---|---|
| committer | Craig Rodrigues <rodrigc@FreeBSD.org> | 2007-02-11 14:01:32 +0000 |
| commit | d139ce67c0b39ab6532275f7baff67d220fe8001 (patch) | |
| tree | 4c3be33659b544ec962442de863aa202704e1d33 /include/Makefile | |
| parent | a8d36d0d9a684f578ea536a64391d13b744056ac (diff) | |
Notes
Diffstat (limited to 'include/Makefile')
| -rw-r--r-- | include/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/Makefile b/include/Makefile index d093a4eac6e6..24d3dad42dd0 100644 --- a/include/Makefile +++ b/include/Makefile @@ -47,7 +47,6 @@ LSUBDIRS= cam/scsi \ fs/unionfs \ geom/cache geom/concat geom/eli geom/gate geom/journal geom/label \ geom/mirror geom/nop geom/raid3 geom/shsec geom/stripe \ - isofs/cd9660 \ netatm/ipatm netatm/sigpvc netatm/spans netatm/uni \ netgraph/atm netgraph/netflow \ security/audit \ @@ -163,6 +162,9 @@ copies: cd ${.CURDIR}/../sys/contrib/altq/altq; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}${INCLUDEDIR}/altq + cd ${.CURDIR}/../sys/fs/cd9660/; \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ + ${DESTDIR}${INCLUDEDIR}/isofs/cd9660 .if ${MK_IPFILTER} != "no" cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ @@ -287,3 +289,8 @@ symlinks: done .endif .endif + cd ${.CURDIR}/../sys/fs/cd9660; \ + for h in *.h; do \ + ln -fs ../../../../sys/fs/cd9660/$$h \ + ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \ + done |
