diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-04-07 22:48:51 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-04-07 22:48:51 +0000 |
commit | 639e80305431cfa2433958d7279c78acc63337b6 (patch) | |
tree | e02332f49adc01e42cc2219fcce02d329ac0adee /etc/Makefile | |
parent | 29325be03f0f73923a9a6ad547acd8325fe31724 (diff) |
solve a bsd*gz problem noted by ryker
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/Makefile b/etc/Makefile index 325a99f42a4..5e3348114ce 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.83 1998/03/31 17:41:18 deraadt Exp $ +# $OpenBSD: Makefile,v 1.84 1998/04/07 22:48:50 deraadt Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= US/Pacific @@ -213,8 +213,10 @@ release: distribution snap_pre snap_md -cp ${DESTDIR}/snapshot/*BOOT* ${RELEASEDIR} -cp ${DESTDIR}/snapshot/INSTALL.* ${RELEASEDIR} -cp ${DESTDIR}/snapshot/*.fs ${DESTDIR}/snapshot/*.fs.gz ${RELEASEDIR} - -cd ${RELEASEDIR}; md5 bsd* *boot* *BOOT* INSTALL.* *.fs *.gz > MD5 - -cd ${RELEASEDIR}; cksum bsd* *boot* *BOOT* INSTALL.* *.fs *.gz > CKSUM + -cd ${RELEASEDIR}; md5 bsd* *boot* *BOOT* INSTALL.* *.fs *.gz | \ + sort | uniq > MD5 + -cd ${RELEASEDIR}; cksum bsd* *boot* *BOOT* INSTALL.* *.fs *.gz | \ + sort | uniq > CKSUM .endif snapshot: distribution snap_pre snap_tar snap_md |