summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrodrigc <rodrigc@FreeBSD.org>2007-02-11 14:01:32 +0000
committerrodrigc <rodrigc@FreeBSD.org>2007-02-11 14:01:32 +0000
commitc9202d5e4906e9f263fb95d81214a9cbf44a3345 (patch)
tree4c3be33659b544ec962442de863aa202704e1d33
parentb236d22de9d89ff115ca8a6bb14457563c4ea3bd (diff)
downloadFreeBSD-src-c9202d5e4906e9f263fb95d81214a9cbf44a3345.zip
FreeBSD-src-c9202d5e4906e9f263fb95d81214a9cbf44a3345.tar.gz
Makefile changes to reflect moving sys/isofs/cd9660 to sys/fs/cd9660.
Continue to install userland include files in /usr/include/isofs/cd9660 so as not to break userland applications such as libstand.
-rw-r--r--include/Makefile9
-rw-r--r--sys/conf/files16
-rw-r--r--sys/kern/Make.tags.inc2
-rw-r--r--sys/modules/cd9660/Makefile2
-rw-r--r--sys/modules/cd9660_iconv/Makefile2
5 files changed, 19 insertions, 12 deletions
diff --git a/include/Makefile b/include/Makefile
index d093a4e..24d3dad 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
diff --git a/sys/conf/files b/sys/conf/files
index 6995d85..9a8f0bd 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -1305,14 +1305,14 @@ isa/isahint.c optional isa
isa/orm.c optional isa
isa/pnp.c optional isa isapnp
isa/pnpparse.c optional isa isapnp
-isofs/cd9660/cd9660_bmap.c optional cd9660
-isofs/cd9660/cd9660_lookup.c optional cd9660
-isofs/cd9660/cd9660_node.c optional cd9660
-isofs/cd9660/cd9660_rrip.c optional cd9660
-isofs/cd9660/cd9660_util.c optional cd9660
-isofs/cd9660/cd9660_vfsops.c optional cd9660
-isofs/cd9660/cd9660_vnops.c optional cd9660
-isofs/cd9660/cd9660_iconv.c optional cd9660_iconv
+fs/cd9660/cd9660_bmap.c optional cd9660
+fs/cd9660/cd9660_lookup.c optional cd9660
+fs/cd9660/cd9660_node.c optional cd9660
+fs/cd9660/cd9660_rrip.c optional cd9660
+fs/cd9660/cd9660_util.c optional cd9660
+fs/cd9660/cd9660_vfsops.c optional cd9660
+fs/cd9660/cd9660_vnops.c optional cd9660
+fs/cd9660/cd9660_iconv.c optional cd9660_iconv
kern/bus_if.m standard
kern/clock_if.m optional genclock
kern/cpufreq_if.m standard
diff --git a/sys/kern/Make.tags.inc b/sys/kern/Make.tags.inc
index c782383..e547137 100644
--- a/sys/kern/Make.tags.inc
+++ b/sys/kern/Make.tags.inc
@@ -94,6 +94,6 @@ COMMDIR2= ${SYS}/dev/advansys \
${SYS}/fs/specfs \
${SYS}/fs/umapfs \
${SYS}/fs/unionfs \
- ${SYS}/isofs/cd9660 \
+ ${SYS}/fs/cd9660 \
${SYS}/ufs/ffs \
${SYS}/ufs/ufs
diff --git a/sys/modules/cd9660/Makefile b/sys/modules/cd9660/Makefile
index 6dffbc9..5fbc1b7 100644
--- a/sys/modules/cd9660/Makefile
+++ b/sys/modules/cd9660/Makefile
@@ -1,6 +1,6 @@
# $FreeBSD$
-.PATH: ${.CURDIR}/../../isofs/cd9660
+.PATH: ${.CURDIR}/../../fs/cd9660
KMOD= cd9660
SRCS= vnode_if.h \
diff --git a/sys/modules/cd9660_iconv/Makefile b/sys/modules/cd9660_iconv/Makefile
index 49104d3..48ddb56 100644
--- a/sys/modules/cd9660_iconv/Makefile
+++ b/sys/modules/cd9660_iconv/Makefile
@@ -1,6 +1,6 @@
# $FreeBSD$
-.PATH: ${.CURDIR}/../../isofs/cd9660
+.PATH: ${.CURDIR}/../../fs/cd9660
KMOD= cd9660_iconv
SRCS= cd9660_iconv.c
OpenPOWER on IntegriCloud