diff options
author | 2000-04-29 22:04:55 +0000 | |
---|---|---|
committer | 2000-04-29 22:04:55 +0000 | |
commit | 81ec0f288621913907cc6479dec1ededb7410a2c (patch) | |
tree | d0901ea54864e60ce504af89cca0b9583d35c6e7 | |
parent | add $ tag (diff) | |
download | wireguard-openbsd-81ec0f288621913907cc6479dec1ededb7410a2c.tar.xz wireguard-openbsd-81ec0f288621913907cc6479dec1ededb7410a2c.zip |
handle .tgz files too
-rw-r--r-- | etc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/Makefile b/etc/Makefile index 76ef5a343e8..6674cc5b506 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.110 2000/04/25 21:17:29 jakob Exp $ +# $OpenBSD: Makefile,v 1.111 2000/04/29 22:04:55 deraadt Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= US/Pacific @@ -249,9 +249,9 @@ 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 > MD5 + md5 bsd!(*.gz) *boot* *BOOT* INSTALL.* *.fs *.gz *.tgz > MD5 -cd ${RELEASEDIR}; \ - cksum bsd!(*.gz) *boot* *BOOT* INSTALL.* *.fs *.gz > CKSUM + cksum bsd!(*.gz) *boot* *BOOT* INSTALL.* *.fs *.gz *.tgz > CKSUM .if defined(MACHINE_HAS_TOOLS) mkdir -p ${RELEASEDIR}/tools cp ${DESTDIR}/snapshot/tools/* ${RELEASEDIR}/tools |