Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 34857 - attal fails to emerge.make fails due to missing Makefiles.
Summary: attal fails to emerge.make fails due to missing Makefiles.
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Games (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Gentoo Games
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-12-01 16:54 UTC by Caslca Slanchoca
Modified: 2003-12-03 13:46 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 Caslca Slanchoca 2003-12-01 16:54:38 UTC
emerge attal fails in the src_compile() stage, because make cannot find
Makefiles in any of the subdirectories. 
A fix for the problem is to replace the procedure

src_compile() {
    make || die "make failed"
}

with

src_compile() {
    for lib in ai client libCommon libClient libFight libServer server
scenarioEditor themeEditor ; do
        qmake -o ${lib}/Makefile ${lib}/Makefile.pro || die "creating Makefiles"
    done

    make || die "make failed"
}



Reproducible: Always
Steps to Reproduce:
1.emerge attal
2.
3.

Actual Results:  
ERROR

Expected Results:  
compile and install
Comment 1 SpanKY gentoo-dev 2003-12-03 13:46:26 UTC
ive updated to 0.7.1

please use that