1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00

bsd.port.mk: missing semicolon added

bsd.port.subdir.mk: added check-md5 as target
This commit is contained in:
Gary Palmer 1994-12-17 20:50:44 +00:00
parent 7112ac2c7c
commit afdf156bf1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=588
2 changed files with 8 additions and 4 deletions

View File

@ -3,7 +3,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
# $Id: bsd.port.mk,v 1.82 1994/12/17 01:58:11 ache Exp $
# $Id: bsd.port.mk,v 1.83 1994/12/17 02:37:26 ache Exp $
#
# Please view me with 4 column tabs!
@ -489,8 +489,8 @@ check-md5: fetch
CKSUM=`${MD5} $$file | awk '{print $$4}'`; \
CKSUM2=`grep "($$file)" ${MD5_FILE} | awk '{print $$4}'`; \
if [ "$$CKSUM" != "$$CKSUM2" ]; then \
echo ">> Checksum mismatch for $$file" \
exit 1;\
echo ">> Checksum mismatch for $$file"; \
exit 1; \
fi; \
done)
@echo "Checksums OK."

View File

@ -1,5 +1,5 @@
# from: @(#)bsd.subdir.mk 5.9 (Berkeley) 2/1/91
# $Id: bsd.port.subdir.mk,v 1.5 1994/09/16 14:30:22 jkh Exp $
# $Id: bsd.port.subdir.mk,v 1.6 1994/11/17 16:02:56 jkh Exp $
.MAIN: all
@ -84,3 +84,7 @@ realinstall: beforeinstall _SUBDIRUSE
.if !target(tags)
tags: _SUBDIRUSE
.endif
.if !target(check-md5)
check-md5: _SUBDIRUSE
.endif