Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 55345 - wrong variable used in java-gnome-2.6.0.1 ebuild src_install function
Summary: wrong variable used in java-gnome-2.6.0.1 ebuild src_install function
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High minor (vote)
Assignee: Java team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-06-27 11:30 UTC by Andrew Cowie
Modified: 2004-07-20 07:09 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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