diff options
author | trevor <trevor@FreeBSD.org> | 2004-01-22 09:02:09 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2004-01-22 09:02:09 +0000 |
commit | 21e4db3616b1d2b1dd00a588182af178d7429278 (patch) | |
tree | 740c4b48e4e13042efbf0d833a62ec4ba07a0e2d /www/linux-mozilla-devel | |
parent | 16c1045d5c04927b76f7f05356b2571397ee761c (diff) | |
download | FreeBSD-ports-21e4db3616b1d2b1dd00a588182af178d7429278.zip FreeBSD-ports-21e4db3616b1d2b1dd00a588182af178d7429278.tar.gz |
Remove checksum target, which is no longer needed and causes "make
index" to generate a warning message (requested by kris).
Diffstat (limited to 'www/linux-mozilla-devel')
-rw-r--r-- | www/linux-mozilla-devel/Makefile | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/www/linux-mozilla-devel/Makefile b/www/linux-mozilla-devel/Makefile index 7600c96..d1d3f8e 100644 --- a/www/linux-mozilla-devel/Makefile +++ b/www/linux-mozilla-devel/Makefile @@ -65,37 +65,6 @@ DISTFILES= browser.xpi \ DISTFILES!= ${CAT} ${WRKDIRPREFIX}${.CURDIR}/work/xpi/components.conf .endif -checksum: -.if !defined(REAL_EXTRACT) - @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} fetch -.endif - @if [ ! -f ${MD5_FILE} ]; then \ - ${ECHO_MSG} ">> No MD5 checksum file."; \ - else \ - (cd ${DISTDIR}; OK="true"; \ - for file in ${_CKSUMFILES}; do \ - if [ -r $$file ]; then \ - CKSUM=`${MD5} < $$file`; \ - CKSUM2=`${GREP} "^MD5 ($$file)" ${MD5_FILE} | ${AWK} '{print $$4}'`; \ - if [ "$$CKSUM2" = "" ]; then \ - ${ECHO_MSG} ">> No checksum recorded for $$file."; \ - OK="false"; \ - elif ${EXPR} "$$CKSUM2" : ".*$$CKSUM" > /dev/null; then \ - ${ECHO_MSG} ">> Checksum OK for $$file."; \ - else \ - ${ECHO_MSG} ">> Checksum mismatch for $$file."; \ - OK="false"; \ - fi; \ - fi; \ - done; \ - if [ "$$OK" != "true" ]; then \ - ${ECHO_MSG} "Make sure the Makefile and distinfo file (${MD5_FILE})"; \ - ${ECHO_MSG} "are up to date. If you are absolutely sure you want to override this"; \ - ${ECHO_MSG} "check, type \"make NO_CHECKSUM=yes [other args]\"."; \ - exit 1; \ - fi) ; \ - fi - do-extract: ${MKDIR} ${WRKSRC} .for i in ${DISTFILES} |