diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2003-03-24 18:15:28 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2003-03-24 18:15:28 +0000 |
commit | 0db589e700a68f47e559f20f5a583cc205a9af41 (patch) | |
tree | e40ea62e801deedb543730753ce68554207ad2b4 /etc | |
parent | 13611a5b2fd407d20332cb8a6a0703cb1c1d6e72 (diff) |
Add *.iso to list of files in CKSUM/MD5 spotted by A.Farber.
ok millert@ miod@ deraadt@
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/Makefile b/etc/Makefile index da9bc53bb3a..63a822bfae3 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.180 2003/03/10 21:08:44 millert Exp $ +# $OpenBSD: Makefile,v 1.181 2003/03/24 18:15:27 drahn Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= US/Pacific @@ -279,9 +279,11 @@ release: distribution snap_pre snap_md -cp ${DESTDIR}/snapshot/INSTALL.* ${RELEASEDIR} -cp ${DESTDIR}/snapshot/*.fs ${DESTDIR}/snapshot/*.fs.gz ${RELEASEDIR} -cd ${RELEASEDIR}; \ - md5 bsd!(*.gz) *boot* *BOOT* INSTALL.* *.fs *.gz *.tgz > MD5 + md5 bsd!(*.gz) *boot* *BOOT* INSTALL.* *.fs *.iso *.gz *.tgz \ + > MD5 -cd ${RELEASEDIR}; \ - cksum bsd!(*.gz) *boot* *BOOT* INSTALL.* *.fs *.gz *.tgz > CKSUM + cksum bsd!(*.gz) *boot* *BOOT* INSTALL.* *.fs *.iso *.gz *.tgz \ + > CKSUM .if defined(MACHINE_HAS_TOOLS) mkdir -p ${RELEASEDIR}/tools cp ${DESTDIR}/snapshot/tools/* ${RELEASEDIR}/tools |