Gentoo Archives: gentoo-dev

From: Donny Davies <woodchip@g.o>
To: gentoo-dev@××××××××××.org
Subject: [gentoo-dev] Re: digest_check() error?
Date: Tue, 13 Nov 2001 21:07:18
Message-Id: 3BF1DE94.612705D@gentoo.org
1 Hi, devs
2
3 Hmm, interesting bug. It appears the fix is simple though. I've tested this
4 on a few things, and it seems to be OK.
5
6 --- ebuild.sh.orig Tue Nov 13 17:34:04 2001
7 +++ ebuild.sh Tue Nov 13 17:34:15 2001
8 @@ -166,7 +166,7 @@
9 echo '!!!'" Ebuild fetch to retrieve files."
10 return 1
11 fi
12 - local mycdigest=`grep " ${1}" ${FILESDIR}/digest-${PF} | cut -f2 -d" "`
13 + local mycdigest=`grep " ${1} " ${FILESDIR}/digest-${PF} | cut -f2 -d" "`
14 if [ -z "$mycdigest" ]
15 then
16 echo
17
18 Now that you've made an ebuild for this thing, I can stop carrying around the one
19 in my /usr/local/bin ;-)
20
21 Cheers
22 --
23 Donny

Replies

Subject Author
Re: [gentoo-dev] Re: digest_check() error? Daniel Robbins <drobbins@g.o>
Re: [gentoo-dev] Re: digest_check() error? Grant Goodyear <grant@××××××××××××××.edu>