aboutsummaryrefslogtreecommitdiff
path: root/release/Makefile
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2005-03-31 16:19:26 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2005-03-31 16:19:26 +0000
commita1b193b54082e5e7e029922f9b90c963e9bb11cd (patch)
treec8e5b4e8aeebe68ab41919f7fe4a8b624d3377a0 /release/Makefile
parent028a54daba2aeb6ba793e8e5e20e06fc8768511d (diff)
downloadsrc-a1b193b54082e5e7e029922f9b90c963e9bb11cd.tar.gz
src-a1b193b54082e5e7e029922f9b90c963e9bb11cd.zip
- Move the doc project docs over to disc2 to free up some room for future
bloat on disc1. - Output a message letting the user know that we are generating MD5 sums during the long pause after the last mkisofs invocation in the iso.1 target. MFC after: 3 days
Notes
Notes: svn path=/head/; revision=144401
Diffstat (limited to 'release/Makefile')
-rw-r--r--release/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/release/Makefile b/release/Makefile
index e5958fcbacdb..8b451ff9f541 100644
--- a/release/Makefile
+++ b/release/Makefile
@@ -945,6 +945,16 @@ cdrom.2:
@mkdir -p ${CD_DISC2}
@echo "CD_VERSION = ${BUILDNAME}" > ${CD_DISC2}/cdrom.inf
@echo "CD_VOLUME = 2" >> ${CD_DISC2}/cdrom.inf
+.if !defined(NODOC)
+ @mkdir -p ${CD_DISC2}/usr/share/doc
+ @for i in `ls ${CD_LIVEFS}/usr/share/doc`; do \
+ if [ -L ${CD_LIVEFS}/usr/share/doc/$$i -o \
+ -d /usr/doc/$$i ]; then \
+ mv ${CD_LIVEFS}/usr/share/doc/$$i \
+ ${CD_DISC2}/usr/share/doc; \
+ fi \
+ done
+.endif
touch ${.TARGET}
#
@@ -998,6 +1008,7 @@ iso.1:
FreeBSD_LiveFS \
${CD}/${BUILDNAME}-${TARGET}-livefs.iso ${CD_LIVEFS}
.endif
+ @echo "Generating MD5 sums..."
@(cd ${CD} && md5 *.iso > ${BUILDNAME}-${TARGET}-iso.CHECKSUM.MD5)
touch ${.TARGET}
.else