Linode.com Forum Forum Index Linode.com Forum
Linode Community Forums
 


Note: current (as of 11/26) gentoo ebuild issue and fix

Click here to go to the original topic

 
       Linode.com Forum Forum Index -> General Discussion
Author Message
efudd



Joined: 27 Oct 2003
Posts: 17

Posted: Wed Nov 26, 2003 5:42 pm    Post subject: Note: current (as of 11/26) gentoo ebuild issue and fix  

At least for now, if you do an 'emerge sync' then try to build/rebuild an ebuild, you will receive a failure as such:

/usr/sbin/ebuild.sh: /usr/portage/eclass/eutils.eclass: line 977: syntax error near unexpected token `)'
/usr/sbin/ebuild.sh: /usr/portage/eclass/eutils.eclass: line 977: ` gzip*)'

Someone forgot the syntax for 'case'. Just *insert* ';;' on line 977 to correct the case, pushing the current 977 down a line. A diff would be too complex for this :p.

--before--
bzip2*)
tail -n +${skip} ${src} | bzip2 -dc | tar -xf -
gzip*)
---after--- bzip2*)
tail -n +${skip} ${src} | bzip2 -dc | tar -xf -
;;
gzip*)
---end---

You should be golden at this point.

-E
Back to top  
 
       Linode.com Forum Forum Index -> General Discussion
Page 1 of 1