Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 70837 - ebuild bug in games-emulation/xmame-0.86
Summary: ebuild bug in games-emulation/xmame-0.86
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Games (show other bugs)
Hardware: PPC Linux
: High normal (vote)
Assignee: Gentoo Games
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-11-11 12:16 UTC by José Alberto Suárez López (RETIRED)
Modified: 2004-11-12 10:11 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 José Alberto Suárez López (RETIRED) gentoo-dev 2004-11-11 12:16:19 UTC
The error is in:

if use ppc ; then
         sed -i \
             -e '/LD.*--relax/s:^# ::' \
             || die "sed Makefile (ppc/LD) failed"
     fi

you forget put the file to patch, in this case Makefile, so it must be:
if use ppc ; then
         sed -i \
             -e '/LD.*--relax/s:^# ::' Makefile \
             || die "sed Makefile (ppc/LD) failed"
     fi


Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 SpanKY gentoo-dev 2004-11-12 10:11:15 UTC
fixed in cvs