Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 28479 - cvsup-16.1h.ebuild won't emerge
Summary: cvsup-16.1h.ebuild won't emerge
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-09-11 15:36 UTC by Laurent Pinchart
Modified: 2003-09-13 00:33 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 Laurent Pinchart 2003-09-11 15:36:24 UTC
I got an error when emerging cvsup-16.1h on an x86. The faulty line in the ebuild is 
 
env PATH="${S}/${EZM3}-install/bin:${PATH}" make || die "cvsup compile failed" 
 
The reason it fails is that EZM3_INSTALL is defined as ${S}/${EZM3}-install above, but 
that S is changed afterwards, so PATH doesn't point where ezm3 is installed. 

Reproducible: Always
Steps to Reproduce:
emerge cvsup-16.1h 
Actual Results:  
 

Expected Results:
Comment 1 Wesley Lane 2003-09-12 22:06:31 UTC
PROPOSED FIX: In cvsup-16.1h.ebuild, replace line 90
env PATH="${S}/${EZM3}-install/bin:${PATH}" make || die "cvsup compile failed"
with
env PATH="${EZM3_INSTALL}/bin:${PATH}" make || die "cvsup compile failed"

emerge is now successful, binaries found. cvsup loads.
I don't know if they actually WORK, since this will be my first use of CVSup.
Comment 2 SpanKY gentoo-dev 2003-09-13 00:33:19 UTC
fixed in cvs, thanks :)

and the binaries will work