- 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
This commit is contained in:
John Baldwin 2005-03-31 16:19:26 +00:00
parent 028a54daba
commit a1b193b540
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=144401

View File

@ -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