Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 55345

Summary: wrong variable used in java-gnome-2.6.0.1 ebuild src_install function
Product: Gentoo Linux Reporter: Andrew Cowie <andrew>
Component: New packagesAssignee: Java team <java>
Status: RESOLVED FIXED    
Severity: minor    
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Andrew Cowie 2004-06-27 11:30:41 UTC
The src_install() function of java-gnome contains a sequnce of commands to create zip files of the java sources corresponding to the libraries being created, which look like this:

   cd ${D}/vte/src
   zip -r target.zip *

Which is wrong. It should be

   cd ${S}/vte/src
   zip -r target.zip *

throughout. Makes it build much faster, too :)

AfC
[writing from some crappy webmail terminal in Copenhagen airport]
Comment 1 Thomas Matthijs (RETIRED) gentoo-dev 2004-07-20 07:09:08 UTC
thanks, fied