Module Name: src
Committed By: martin
Date: Fri Sep 28 15:03:34 UTC 2018
Modified Files:
src/distrib/common: Makefile.bootcd
Log Message:
Fix stupid typo (=+ instead of +=).
Remove hard coded debug sets removal, now that the configurable
variant works.
Prepare for .tar.xz sets.
To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/distrib/common/Makefile.bootcd
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/common/Makefile.bootcd
diff -u src/distrib/common/Makefile.bootcd:1.40 src/distrib/common/Makefile.bootcd:1.41
--- src/distrib/common/Makefile.bootcd:1.40 Mon Jun 25 12:18:22 2018
+++ src/distrib/common/Makefile.bootcd Fri Sep 28 15:03:34 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.bootcd,v 1.40 2018/06/25 12:18:22 martin Exp $
+# $NetBSD: Makefile.bootcd,v 1.41 2018/09/28 15:03:34 martin Exp $
#
# Makefile snipped to create a CD/DVD ISO
#
@@ -53,7 +53,10 @@ CDROMS_RELEASEDIR?= images
CDRELEASE_EXCLUDE= -s ',./installation/cdrom.*,,gp'
.endif
.if defined(CDRELEASE_NODEBUG)
-CDRELEASE_EXCLUDE=+ -s ',./binary/sets/debug.tgz,,gp' -s ',./binary/sets/xdebug.tgz,,gp'
+CDRELEASE_EXCLUDE+= -s ',./binary/sets/debug.tgz,,gp'
+CDRELEASE_EXCLUDE+= -s ',./binary/sets/xdebug.tgz,,gp'
+CDRELEASE_EXCLUDE+= -s ',./binary/sets/debug.tar.xz,,gp'
+CDRELEASE_EXCLUDE+= -s ',./binary/sets/xdebug.tar.xz,,gp'
.endif
.if !defined(CDRELEASE_LIVEIMAGE)
CDRELEASE_EXCLUDE+= -s ',./installation/liveimage.*,,gp'
@@ -189,8 +192,6 @@ copy-releasedir:
${TOOL_PAX} ${PAX_TIMESTAMP} \
-rw -pe ${PAX_v} \
${CDRELEASE_EXCLUDE} \
- -s ',./binary/sets/debug.tgz,,gp' \
- -s ',./binary/sets/xdebug.tgz,,gp' \
. $$release_destdir; \
cd "${CUROBJDIR}"; \
fi