Module Name: src
Committed By: perry
Date: Fri Apr 3 22:36:36 UTC 2009
Modified Files:
src/distrib/alpha/floppy-GENERIC: Makefile
src/distrib/alpha/rz25dist: Makefile
src/distrib/atari/floppies/tos: build_image.sh
src/distrib/bebox/floppies/bootfloppy-common: Makefile.inc
src/distrib/cobalt: Makefile
src/distrib/common: Makefile.image Makefile.mdset Makefile.tarfloppy
src/distrib/evbarm/gzboot/gzimg: Makefile
src/distrib/ews4800mips/floppies/instkernel: Makefile
src/distrib/i386/kmod: Makefile
src/distrib/prep/floppies/kernel-generic: Makefile
src/distrib/sets: makesrctars maketars regpkg
src/distrib/shark/instkernel/instkernel: Makefile
src/distrib/sparc64/xminiroot: Makefile
src/distrib/x68k/floppies/bootfloppy.generic: Makefile
Log Message:
Consistently use gzip with the -n flag so dates are not embedded.
Not tested on all platforms.
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/distrib/alpha/floppy-GENERIC/Makefile
cvs rdiff -u -r1.28 -r1.29 src/distrib/alpha/rz25dist/Makefile
cvs rdiff -u -r1.1.1.1 -r1.2 src/distrib/atari/floppies/tos/build_image.sh
cvs rdiff -u -r1.10 -r1.11 \
src/distrib/bebox/floppies/bootfloppy-common/Makefile.inc
cvs rdiff -u -r1.2 -r1.3 src/distrib/cobalt/Makefile
cvs rdiff -u -r1.30 -r1.31 src/distrib/common/Makefile.image
cvs rdiff -u -r1.33 -r1.34 src/distrib/common/Makefile.mdset
cvs rdiff -u -r1.15 -r1.16 src/distrib/common/Makefile.tarfloppy
cvs rdiff -u -r1.20 -r1.21 src/distrib/evbarm/gzboot/gzimg/Makefile
cvs rdiff -u -r1.3 -r1.4 src/distrib/ews4800mips/floppies/instkernel/Makefile
cvs rdiff -u -r1.9 -r1.10 src/distrib/i386/kmod/Makefile
cvs rdiff -u -r1.8 -r1.9 src/distrib/prep/floppies/kernel-generic/Makefile
cvs rdiff -u -r1.34 -r1.35 src/distrib/sets/makesrctars
cvs rdiff -u -r1.66 -r1.67 src/distrib/sets/maketars
cvs rdiff -u -r1.15 -r1.16 src/distrib/sets/regpkg
cvs rdiff -u -r1.16 -r1.17 src/distrib/shark/instkernel/instkernel/Makefile
cvs rdiff -u -r1.26 -r1.27 src/distrib/sparc64/xminiroot/Makefile
cvs rdiff -u -r1.6 -r1.7 \
src/distrib/x68k/floppies/bootfloppy.generic/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/alpha/floppy-GENERIC/Makefile
diff -u src/distrib/alpha/floppy-GENERIC/Makefile:1.19 src/distrib/alpha/floppy-GENERIC/Makefile:1.20
--- src/distrib/alpha/floppy-GENERIC/Makefile:1.19 Thu Jul 10 10:34:01 2003
+++ src/distrib/alpha/floppy-GENERIC/Makefile Fri Apr 3 22:36:34 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.19 2003/07/10 10:34:01 lukem Exp $
+# $NetBSD: Makefile,v 1.20 2009/04/03 22:36:34 perry Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -42,7 +42,7 @@
@rm -f ${.TARGET} ${.TARGET}.tmp
cp ${.ALLSRC} ${.TARGET}.tmp
${STRIP} ${.TARGET}.tmp
- gzip -9f ${.TARGET}.tmp
+ gzip -9nf ${.TARGET}.tmp
mv ${.TARGET}.tmp.gz ${.TARGET}
CLEANFILES+= netbsd netbsd.tmp netbsd.tmp.gz
Index: src/distrib/alpha/rz25dist/Makefile
diff -u src/distrib/alpha/rz25dist/Makefile:1.28 src/distrib/alpha/rz25dist/Makefile:1.29
--- src/distrib/alpha/rz25dist/Makefile:1.28 Thu Jul 10 10:34:02 2003
+++ src/distrib/alpha/rz25dist/Makefile Fri Apr 3 22:36:34 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.28 2003/07/10 10:34:02 lukem Exp $
+# $NetBSD: Makefile,v 1.29 2009/04/03 22:36:34 perry Exp $
.include "../../../Makefile.inc"
@@ -77,21 +77,21 @@
umount ${DESTDIR}/usr ${DESTDIR}
/bin/rm -f $@
dd if=/dev/r${DESTDISK}c bs=`expr ${SECPERCYL} \* 512` \
- count=${CYLS} | gzip -9 > $@
+ count=${CYLS} | gzip -9n > $@
bin.tar.gz: mount-fs build-fs
/bin/rm -f $@
(cd ${DESTDIR} ; find . | grep -v '^./etc' | \
grep -v '^./usr/X11R6' | grep -v '^./netbsd' | \
- grep -v '^./boot' | pax -w -d | gzip -9) > $@
+ grep -v '^./boot' | pax -w -d | gzip -9n) > $@
etc.tar.gz: mount-fs build-fs
/bin/rm -f $@
- (cd ${DESTDIR} ; find ./etc | pax -w -d | gzip -9) > $@
+ (cd ${DESTDIR} ; find ./etc | pax -w -d | gzip -9n) > $@
x11.tar.gz: mount-fs build-fs
/bin/rm -f $@
- (cd ${DESTDIR} ; find ./usr/X11R6 | pax -w -d | gzip -9) > $@
+ (cd ${DESTDIR} ; find ./usr/X11R6 | pax -w -d | gzip -9n) > $@
.endif
Index: src/distrib/atari/floppies/tos/build_image.sh
diff -u src/distrib/atari/floppies/tos/build_image.sh:1.1.1.1 src/distrib/atari/floppies/tos/build_image.sh:1.2
--- src/distrib/atari/floppies/tos/build_image.sh:1.1.1.1 Tue Sep 10 13:58:51 2002
+++ src/distrib/atari/floppies/tos/build_image.sh Fri Apr 3 22:36:34 2009
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: build_image.sh,v 1.1.1.1 2002/09/10 13:58:51 leo Exp $
+# $NetBSD: build_image.sh,v 1.2 2009/04/03 22:36:34 perry Exp $
# This script is a quick hack to generate the various floppies in the
# 'installation/floppies' directory. This script cannot be run in the
# build environment, it is provided as a howto.
@@ -59,7 +59,7 @@
$SUDO umount ${MNT_DIR}
$SUDO vnconfig -u ${VND_DEV}
mv /tmp/${base_img}.fs /tmp/$1.fs
- gzip -9 /tmp/$1.fs
+ gzip -9n /tmp/$1.fs
mv /tmp/$1.fs.gz $DESTDIR
shift 2
done
Index: src/distrib/bebox/floppies/bootfloppy-common/Makefile.inc
diff -u src/distrib/bebox/floppies/bootfloppy-common/Makefile.inc:1.10 src/distrib/bebox/floppies/bootfloppy-common/Makefile.inc:1.11
--- src/distrib/bebox/floppies/bootfloppy-common/Makefile.inc:1.10 Sun Oct 26 07:25:33 2003
+++ src/distrib/bebox/floppies/bootfloppy-common/Makefile.inc Fri Apr 3 22:36:34 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.10 2003/10/26 07:25:33 lukem Exp $
+# $NetBSD: Makefile.inc,v 1.11 2009/04/03 22:36:34 perry Exp $
# TOP is assumed to be defined by Makefile including this one.
@@ -57,7 +57,7 @@
netbsd.ram.gz: ${KERN} ${RAMDISK}
cp ${KERN} netbsd.tmp
${TOOL_MDSETIMAGE} -v netbsd.tmp ${RAMDISK}
- gzip -9f netbsd.tmp
+ gzip -9nf netbsd.tmp
mv netbsd.tmp.gz ${.TARGET}
clean cleandir:
Index: src/distrib/cobalt/Makefile
diff -u src/distrib/cobalt/Makefile:1.2 src/distrib/cobalt/Makefile:1.3
--- src/distrib/cobalt/Makefile:1.2 Mon Jun 23 02:16:53 2008
+++ src/distrib/cobalt/Makefile Fri Apr 3 22:36:34 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2008/06/23 02:16:53 matt Exp $
+# $NetBSD: Makefile,v 1.3 2009/04/03 22:36:34 perry Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -9,7 +9,7 @@
TARGETS+= release
release: check_RELEASEDIR .WAIT ${BOOT}
- gzip -9c ${BOOT} > ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/boot.gz
+ gzip -9nc ${BOOT} > ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/boot.gz
iso_image:
${MAKEDIRTARGET} cdroms iso_image
Index: src/distrib/common/Makefile.image
diff -u src/distrib/common/Makefile.image:1.30 src/distrib/common/Makefile.image:1.31
--- src/distrib/common/Makefile.image:1.30 Mon Jun 23 02:16:53 2008
+++ src/distrib/common/Makefile.image Fri Apr 3 22:36:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.image,v 1.30 2008/06/23 02:16:53 matt Exp $
+# $NetBSD: Makefile.image,v 1.31 2009/04/03 22:36:35 perry Exp $
#
# Makefile snippet to build a tree from the provided lists,
# and make an ffs file system image from that tree
@@ -102,7 +102,7 @@
${IMAGE}.gz: ${IMAGE}
${_MKTARGET_CREATE}
-rm -f ${.TARGET}
- gzip -9c ${.ALLSRC} > ${.TARGET}
+ gzip -9nc ${.ALLSRC} > ${.TARGET}
realall: ${IMAGE}
@@ -120,7 +120,7 @@
${IMAGETAR}: ${WORKBUILT} ${WORKSPEC} ${IMAGEDEPENDS}
${_MKTARGET_CREATE}
( cd ${WORKDIR}; \
- GZIP=-9 ${TOOL_PAX} -ON ${NETBSDSRCDIR}/etc -wdzM <${.OBJDIR}/${WORKSPEC} \
+ GZIP=-9n ${TOOL_PAX} -ON ${NETBSDSRCDIR}/etc -wdzM <${.OBJDIR}/${WORKSPEC} \
) > ${.TARGET}.tmp \
&& mv ${.TARGET}.tmp ${.TARGET}
Index: src/distrib/common/Makefile.mdset
diff -u src/distrib/common/Makefile.mdset:1.33 src/distrib/common/Makefile.mdset:1.34
--- src/distrib/common/Makefile.mdset:1.33 Mon Jul 21 10:00:52 2008
+++ src/distrib/common/Makefile.mdset Fri Apr 3 22:36:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.mdset,v 1.33 2008/07/21 10:00:52 agc Exp $
+# $NetBSD: Makefile.mdset,v 1.34 2009/04/03 22:36:35 perry Exp $
#
# Makefile snippet to ${TOOL_MDSETIMAGE} file system images into kernels
#
@@ -102,7 +102,7 @@
${_KERNEL.${_K}.${_F}}.${_S}.gz: ${_KERNEL.${_K}.${_F}}.${_S}
${_MKTARGET_CREATE}
-rm -f ${.TARGET}
- gzip -9c ${.ALLSRC} > ${.TARGET}
+ gzip -9nc ${.ALLSRC} > ${.TARGET}
.endif # }
.endfor # }
@@ -142,7 +142,7 @@
${TOOL_MDSETIMAGE} ${MDSETIMAGEFLAGS} ${.TARGET}.tmp ${_I}
.endif
.if !defined(MDSET_NOSYMBOLS.${_FILENAME}) && !defined(MDSET_NOSYMBOLS)
- ${NM} ${.TARGET}.tmp | gzip -9 > ${.TARGET}.symbols.gz
+ ${NM} ${.TARGET}.tmp | gzip -9n > ${.TARGET}.symbols.gz
.endif
.if !defined(MDSET_NOSTRIP.${_FILENAME}) && !defined(MDSET_NOSTRIP)
${STRIP} -R .comment -R .ident ${.TARGET}.tmp
@@ -160,7 +160,7 @@
${_KERNEL.${_K}.${_F}}.gz: ${_KERNEL.${_K}.${_F}}
${_MKTARGET_CREATE}
-rm -f ${.TARGET}
- gzip -9c ${.ALLSRC} > ${.TARGET}
+ gzip -9nc ${.ALLSRC} > ${.TARGET}
.endif # }
.endfor # }
Index: src/distrib/common/Makefile.tarfloppy
diff -u src/distrib/common/Makefile.tarfloppy:1.15 src/distrib/common/Makefile.tarfloppy:1.16
--- src/distrib/common/Makefile.tarfloppy:1.15 Wed Nov 12 14:22:16 2008
+++ src/distrib/common/Makefile.tarfloppy Fri Apr 3 22:36:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.tarfloppy,v 1.15 2008/11/12 14:22:16 apb Exp $
+# $NetBSD: Makefile.tarfloppy,v 1.16 2009/04/03 22:36:35 perry Exp $
#
# Makefile snippet to create a set of ustar floppies.
# Each floppy has an 8KB header, followed by part or all of the ustar archive.
@@ -54,7 +54,7 @@
CLEANFILES+= netbsd netbsd.tmp
.if ${FLOPPY_NETBSD:E}=="gz"
COPY_CMD= gunzip -c ${.ALLSRC} > ${.TARGET}.tmp
-COMPRESS_CMD= gzip -9c ${.TARGET}.tmp > ${.TARGET}; rm -f ${.TARGET}.tmp
+COMPRESS_CMD= gzip -9nc ${.TARGET}.tmp > ${.TARGET}; rm -f ${.TARGET}.tmp
.else
COPY_CMD= cp ${.ALLSRC} ${.TARGET}.tmp
COMPRESS_CMD= mv -f ${.TARGET}.tmp ${.TARGET}
Index: src/distrib/evbarm/gzboot/gzimg/Makefile
diff -u src/distrib/evbarm/gzboot/gzimg/Makefile:1.20 src/distrib/evbarm/gzboot/gzimg/Makefile:1.21
--- src/distrib/evbarm/gzboot/gzimg/Makefile:1.20 Fri Oct 31 02:02:54 2008
+++ src/distrib/evbarm/gzboot/gzimg/Makefile Fri Apr 3 22:36:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 2008/10/31 02:02:54 cliff Exp $
+# $NetBSD: Makefile,v 1.21 2009/04/03 22:36:35 perry Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -65,12 +65,12 @@
gzimg_${I}_flash_${R}: .NOTMAIN ${GZB${G}} ${KERNOBJDIR}/${K}/${W}.bin
@echo "Populating ${.TARGET}"
-rm -f ${.TARGET}.kern.gz
- gzip -9c ${KERNOBJDIR}/${K}/${W}.bin > ${.TARGET}.kern.gz
+ gzip -9nc ${KERNOBJDIR}/${K}/${W}.bin > ${.TARGET}.kern.gz
${TOOL_CAT} ${GZB${G}} ${.TARGET}.kern.gz > ${.TARGET}
gzimg_${I}_flash_${R}.gz: .NOTMAIN gzimg_${I}_flash_${R}
-rm -f ${.TARGET}
- gzip -9c ${.ALLSRC} > ${.TARGET}
+ gzip -9nc ${.ALLSRC} > ${.TARGET}
CLEANFILES+= gzimg_${I}_flash_${R}.kern gzimg_${I}_flash_${R}.kern.gz \
gzimg_${I}_flash_${R}
Index: src/distrib/ews4800mips/floppies/instkernel/Makefile
diff -u src/distrib/ews4800mips/floppies/instkernel/Makefile:1.3 src/distrib/ews4800mips/floppies/instkernel/Makefile:1.4
--- src/distrib/ews4800mips/floppies/instkernel/Makefile:1.3 Mon Jun 23 02:16:53 2008
+++ src/distrib/ews4800mips/floppies/instkernel/Makefile Fri Apr 3 22:36:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2008/06/23 02:16:53 matt Exp $
+# $NetBSD: Makefile,v 1.4 2009/04/03 22:36:35 perry Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -20,7 +20,7 @@
gunzip -c ${DESTDIR}/usr/mdec/boot_kernel.gz > ${BOOT_RAMDISK}.tmp
${TOOL_MDSETIMAGE} ${BOOT_RAMDISK}.tmp netbsd-RAMDISK.gz
${ELF2ECOFF} ${BOOT_RAMDISK}.tmp ${BOOT_RAMDISK}.coff
- gzip -9c ${BOOT_RAMDISK}.coff > ${.TARGET}
+ gzip -9nc ${BOOT_RAMDISK}.coff > ${.TARGET}
CLEANFILES+= ${BOOT_RAMDISK}.tmp ${BOOT_RAMDISK}.coff ${BOOT_RAMDISK}.gz
Index: src/distrib/i386/kmod/Makefile
diff -u src/distrib/i386/kmod/Makefile:1.9 src/distrib/i386/kmod/Makefile:1.10
--- src/distrib/i386/kmod/Makefile:1.9 Sat Jan 24 22:14:44 2009
+++ src/distrib/i386/kmod/Makefile Fri Apr 3 22:36:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2009/01/24 22:14:44 rmind Exp $
+# $NetBSD: Makefile,v 1.10 2009/04/03 22:36:35 perry Exp $
.include <bsd.own.mk>
.include "../../common/Makefile.distrib"
@@ -16,7 +16,7 @@
${OBJCOPY} --add-section miniroot=${RAMDISKFS} \
--set-section-flags miniroot=alloc,contents,load,data \
${SRCMOD} ${DSTMOD}.tmp
- gzip -9c < ${DSTMOD}.tmp > ${DSTMOD}
+ gzip -9nc < ${DSTMOD}.tmp > ${DSTMOD}
rm -f ${DSTMOD}.tmp
.include <bsd.prog.mk>
Index: src/distrib/prep/floppies/kernel-generic/Makefile
diff -u src/distrib/prep/floppies/kernel-generic/Makefile:1.8 src/distrib/prep/floppies/kernel-generic/Makefile:1.9
--- src/distrib/prep/floppies/kernel-generic/Makefile:1.8 Mon Jun 23 02:16:54 2008
+++ src/distrib/prep/floppies/kernel-generic/Makefile Fri Apr 3 22:36:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2008/06/23 02:16:54 matt Exp $
+# $NetBSD: Makefile,v 1.9 2009/04/03 22:36:35 perry Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -12,7 +12,7 @@
${KERNEL}: ${KERN}
-rm -f ${.TARGET}
- gzip -9c ${.ALLSRC} > ${.TARGET}
+ gzip -9nc ${.ALLSRC} > ${.TARGET}
realall: ${KERNEL}
Index: src/distrib/sets/makesrctars
diff -u src/distrib/sets/makesrctars:1.34 src/distrib/sets/makesrctars:1.35
--- src/distrib/sets/makesrctars:1.34 Sun Mar 16 07:02:22 2008
+++ src/distrib/sets/makesrctars Fri Apr 3 22:36:35 2009
@@ -1,6 +1,6 @@
#! /bin/sh
#
-# $NetBSD: makesrctars,v 1.34 2008/03/16 07:02:22 lukem Exp $
+# $NetBSD: makesrctars,v 1.35 2009/04/03 22:36:35 perry Exp $
#
# makesrctars srcdir setdir
# Create source tarballs in setdir from the source under srcdir.
@@ -14,7 +14,7 @@
xsrcdir=
quiet=false
-GZIP=-9
+GZIP=-9n
export GZIP
usage()
Index: src/distrib/sets/maketars
diff -u src/distrib/sets/maketars:1.66 src/distrib/sets/maketars:1.67
--- src/distrib/sets/maketars:1.66 Thu Apr 2 23:06:16 2009
+++ src/distrib/sets/maketars Fri Apr 3 22:36:35 2009
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: maketars,v 1.66 2009/04/02 23:06:16 tsutsui Exp $
+# $NetBSD: maketars,v 1.67 2009/04/03 22:36:35 perry Exp $
#
# Make release tar files for some or all lists. Usage:
# maketars [-b] [-x] [-i installdir] [-a arch] [-m machine] [-s setsdir]
@@ -169,7 +169,7 @@
# now build the tarfiles
#
-GZIP=-9 # for pax -z
+GZIP=-9n # for pax -z
export GZIP
es=0
for setname in ${lists}; do
Index: src/distrib/sets/regpkg
diff -u src/distrib/sets/regpkg:1.15 src/distrib/sets/regpkg:1.16
--- src/distrib/sets/regpkg:1.15 Mon Feb 5 18:26:01 2007
+++ src/distrib/sets/regpkg Fri Apr 3 22:36:35 2009
@@ -1,6 +1,6 @@
#! /bin/sh
#
-# $NetBSD: regpkg,v 1.15 2007/02/05 18:26:01 apb Exp $
+# $NetBSD: regpkg,v 1.16 2009/04/03 22:36:35 perry Exp $
#
# Copyright (c) 2003 Alistair G. Crooks. All rights reserved.
#
@@ -635,7 +635,7 @@
# "@name" line and a lot of "@comment MD5:" lines.
#
{
- rcsid='$NetBSD: regpkg,v 1.15 2007/02/05 18:26:01 apb Exp $'
+ rcsid='$NetBSD: regpkg,v 1.16 2009/04/03 22:36:35 perry Exp $'
utcdate="$(${ENV_CMD} TZ=UTC LOCALE=C \
${DATE} '+%Y-%m-%d %H:%M')"
user="${USER:-root}"
@@ -892,7 +892,7 @@
<"${specfile_payload}" \
|| bomb
)
- ${GZIP_CMD} -9 <"${tarball_uncompressed}" >"${binpkgfile}" || bomb
+ ${GZIP_CMD} -9n <"${tarball_uncompressed}" >"${binpkgfile}" || bomb
# (Extra space is to make message line up with "Registered" message.)
if ${verbose}; then
Index: src/distrib/shark/instkernel/instkernel/Makefile
diff -u src/distrib/shark/instkernel/instkernel/Makefile:1.16 src/distrib/shark/instkernel/instkernel/Makefile:1.17
--- src/distrib/shark/instkernel/instkernel/Makefile:1.16 Mon Jun 23 02:16:54 2008
+++ src/distrib/shark/instkernel/instkernel/Makefile Fri Apr 3 22:36:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2008/06/23 02:16:54 matt Exp $
+# $NetBSD: Makefile,v 1.17 2009/04/03 22:36:35 perry Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -12,7 +12,7 @@
MDSET_POST= \
${OBJCOPY} -O a.out-arm-netbsd -R .ident -R .arm.atpcs -R .comment \
${.TARGET} ${.TARGET}.aout; \
- gzip -9c ${.TARGET}.aout >${.TARGET}.aout.gz
+ gzip -9nc ${.TARGET}.aout >${.TARGET}.aout.gz
.include "${DISTRIBDIR}/common/Makefile.mdset"
Index: src/distrib/sparc64/xminiroot/Makefile
diff -u src/distrib/sparc64/xminiroot/Makefile:1.26 src/distrib/sparc64/xminiroot/Makefile:1.27
--- src/distrib/sparc64/xminiroot/Makefile:1.26 Tue May 9 19:10:43 2006
+++ src/distrib/sparc64/xminiroot/Makefile Fri Apr 3 22:36:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2006/05/09 19:10:43 he Exp $
+# $NetBSD: Makefile,v 1.27 2009/04/03 22:36:35 perry Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -23,7 +23,7 @@
netbsd.gz: ${KERNOBJDIR}/GENERIC/netbsd
-rm -f ${.TARGET}
- gzip -9c ${.ALLSRC} > ${.TARGET}
+ gzip -9nc ${.ALLSRC} > ${.TARGET}
clean: localclean
Index: src/distrib/x68k/floppies/bootfloppy.generic/Makefile
diff -u src/distrib/x68k/floppies/bootfloppy.generic/Makefile:1.6 src/distrib/x68k/floppies/bootfloppy.generic/Makefile:1.7
--- src/distrib/x68k/floppies/bootfloppy.generic/Makefile:1.6 Sun Aug 18 14:43:00 2002
+++ src/distrib/x68k/floppies/bootfloppy.generic/Makefile Fri Apr 3 22:36:35 2009
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2002/08/18 14:43:00 isaki Exp $
+# $NetBSD: Makefile,v 1.7 2009/04/03 22:36:35 perry Exp $
.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -28,7 +28,7 @@
netbsd.gz: ${KERNOBJDIR}/GENERIC/netbsd
@rm -f ${.TARGET}
- gzip -9c ${.ALLSRC} > ${.TARGET}
+ gzip -9nc ${.ALLSRC} > ${.TARGET}
.include "${DISTRIBDIR}/common/Makefile.tarfloppy"