diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-10-08 11:33:52 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-10-08 11:33:52 +0000 |
commit | af90b519c7a7cd558f0151cee80d8e1282626672 (patch) | |
tree | c179bb1c07f74126a467e44414e946dd8567e51c /etc | |
parent | a03c60640dc5eeebc5716e4add742a4ca954e18b (diff) |
Oops... CKSUM should hold cksum results, and be sorted on 3rd field
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/Makefile b/etc/Makefile index 728d4c4b120..aef70a50ed6 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.102 1999/10/08 10:51:34 espie Exp $ +# $OpenBSD: Makefile,v 1.103 1999/10/08 11:33:51 espie Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= US/Pacific @@ -241,10 +241,10 @@ release: distribution snap_pre snap_md mkdir -p ${RELEASEDIR}/tools cp ${DESTDIR}/snapshot/tools/* ${RELEASEDIR}/tools cd ${RELEASEDIR} && md5 tools/* >>MD5 - cd ${RELEASEDIR} && md5 tools/* >>CKSUM + cd ${RELEASEDIR} && cksum tools/* >>CKSUM .endif -cd ${RELEASEDIR} && sort -o MD5 MD5 - -cd ${RELEASEDIR} && sort -o CKSUM CKSUM + -cd ${RELEASEDIR} && sort -o CKSUM -k 3 CKSUM .endif snapshot: distribution snap_pre snap_tar snap_md |