Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 05 Dec 2000 14:58:07 +0900
From:      Makoto MATSUSHITA <matusita@jp.freebsd.org>
To:        freebsd-gnats-submit@FreeBSD.org
Cc:        stable@freebsd.org, current@freebsd.org
Subject:   Re: bin/20311: src/release/Makefile: broken CHECKSUM.MD5
Message-ID:  <20001205145807I.matusita@jp.FreeBSD.org>
In-Reply-To: <20000927133044R.matusita@jp.FreeBSD.org>
References:  <20000731201222N.matusita@jp.FreeBSD.org> <200007311120.EAA03565@freefall.freebsd.org> <20000927133044R.matusita@jp.FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help

(forward to stable/current also, to open this problem widely)

matusita> * CHECKSUM.MD5 is still broken. It also affected to 4.1.1-RELEASE

I cannot believe that this problem is still there, and CHECKSUM.MD5s
of 4.2-RELEASE/{src,crypto} are also broken.

However, it's easy to fix just like this (CAUTION: I don't test with this):

Index: Makefile
===================================================================
RCS file: /lab/FreeBSD/FreeBSD.cvs/src/release/Makefile,v
retrieving revision 1.586
diff -c -r1.586 Makefile
*** Makefile	2000/11/21 04:37:30	1.586
--- Makefile	2000/12/05 05:43:41
***************
*** 503,509 ****
  		if [ -f ssecure.aa ] ; then mv ssecure.* ../crypto ; fi && \
  		if [ -f scrypto.aa ] ; then mv scrypto.* ../crypto ; fi && \
  		if [ -f skrb4.aa ] ; then mv skrb4.* ../crypto ; fi && \
! 		if [ -f skrb5.aa ] ; then mv skrb5.* ../crypto ; fi ; ) ; fi
  	@echo "src distribution is finished."
  .endif
  	touch release.7
--- 503,512 ----
  		if [ -f ssecure.aa ] ; then mv ssecure.* ../crypto ; fi && \
  		if [ -f scrypto.aa ] ; then mv scrypto.* ../crypto ; fi && \
  		if [ -f skrb4.aa ] ; then mv skrb4.* ../crypto ; fi && \
! 		if [ -f skrb5.aa ] ; then mv skrb5.* ../crypto ; fi ; \
! 		cd ${RD}/dists/crypto; rm -f CHECKSUM.MD5; \
! 		md5 * > CHECKSUM.MD5 ) ; fi
! 	(cd ${RD}/dists/src; rm -f CHECKSUM.MD5; md5 * > CHECKSUM.MD5)
  	@echo "src distribution is finished."
  .endif
  	touch release.7

But if creating CHECKSUM.MD5 files are already totally broken feature,
we can simply remove all CHECKSUM.MD5 files.

-- -
Makoto `MAR' MATSUSHITA


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20001205145807I.matusita>