diff options
author | peter <peter@FreeBSD.org> | 2000-01-26 17:38:51 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-01-26 17:38:51 +0000 |
commit | 36c90d4614149a3d24b5b8bbc3e8eaea79cedb3b (patch) | |
tree | 689ab44d78463dff6d6582c23c857f85a79b780e /include | |
parent | 7f0f3f3358cb677678d87b86362d6b702edff737 (diff) | |
download | FreeBSD-src-36c90d4614149a3d24b5b8bbc3e8eaea79cedb3b.zip FreeBSD-src-36c90d4614149a3d24b5b8bbc3e8eaea79cedb3b.tar.gz |
Sigh. Really fix it this time. It seems the first time through the
run it would modify the source tree, causing it to fail the second
time around. Sigh.
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/Makefile b/include/Makefile index e2c27e2..4530e78 100644 --- a/include/Makefile +++ b/include/Makefile @@ -47,6 +47,9 @@ LDIRS= cam msdosfs net netatalk netatm netgraph netinet netinet6 \ LNOHEADERDIRS= isofs ufs dev LSUBDIRS= isofs/cd9660 ufs/ffs ufs/mfs ufs/ufs cam/scsi dev/usb +# For SHARED=symlinks, cam is a symlink, so cam/scsi is taken care of +LSYMSUBDIRS= isofs/cd9660 ufs/ffs ufs/mfs ufs/ufs dev/usb + # Define SHARED to indicate whether you want symbolic links to the system # source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is # probably only useful for developers and should be avoided if you do not @@ -124,7 +127,7 @@ symlinks: rm -rf ${DESTDIR}/usr/include/$i mkdir ${DESTDIR}/usr/include/$i .endfor -.for i in ${LSUBDIRS} +.for i in ${LSYMSUBDIRS} ln -s ../../../sys/$i ${DESTDIR}/usr/include/$i .endfor rm -rf ${DESTDIR}/usr/include/machine |