Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-2]: src/etc Pull up revision 1.302 (requested by fredb in ticket ...



details:   https://anonhg.NetBSD.org/src/rev/95c3255f1a7a
branches:  netbsd-2
changeset: 563437:95c3255f1a7a
user:      riz <riz%NetBSD.org@localhost>
date:      Thu May 05 19:21:44 2005 +0000

description:
Pull up revision 1.302 (requested by fredb in ticket #1121):
Permit a "README", "SOURCE_DATE", and "source" at the top-level to be
added to the CD-ROM (only if they exist), as proposed on tech-install
and tech-toolchain without objections. Note, this will "bloat" the CD-ROM
image if you have done a "./build.sh sourcesets". If you don't want that,
just move "source" out of ${RELEASEDIR} for the "make iso-image".

diffstat:

 etc/Makefile |  7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diffs (21 lines):

diff -r d762b85c77f1 -r 95c3255f1a7a etc/Makefile
--- a/etc/Makefile      Thu May 05 15:37:06 2005 +0000
+++ b/etc/Makefile      Thu May 05 19:21:44 2005 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.284.2.1 2004/07/28 21:35:29 jmc Exp $
+#      $NetBSD: Makefile,v 1.284.2.1.2.1 2005/05/05 19:21:44 riz Exp $
 #      from: @(#)Makefile      8.7 (Berkeley) 5/25/95
 
 # Environment variables without default values:
@@ -408,6 +408,11 @@
 
 iso-image-setup: .PHONY check_RELEASEDIR
        rm -f ${CDROM.pathlist}
+.for extra in README SOURCE_DATE source
+.if exists(${RELEASEDIR}/${extra})
+       echo "${extra}=${RELEASEDIR}/${extra}" >> ${CDROM.pathlist}
+.endif
+.endfor
        echo "${MACHINE}=${RELEASEDIR}/${MACHINE}" >> ${CDROM.pathlist}
        mkdir -p ${CDROM.dir}
        mkdir -p ${RELEASEDIR}/${MACHINE}/installation/cdrom



Home | Main Index | Thread Index | Old Index