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

Bug 34857

Summary: attal fails to emerge.make fails due to missing Makefiles.
Product: Gentoo Linux Reporter: Caslca Slanchoca <caslca>
Component: [OLD] GamesAssignee: Gentoo Games <games>
Status: RESOLVED FIXED    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: x86   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

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