Bug 34857 - attal fails to emerge.make fails due to missing Makefiles.
Bug#: 34857 Product:  Gentoo Linux Version: unspecified Platform: x86
OS/Version: Linux Status: RESOLVED Severity: normal Priority: P2
Resolution: FIXED Assigned To: games@gentoo.org Reported By: caslca@hotmail.com
Component: Games
URL: 
Summary: attal fails to emerge.make fails due to missing Makefiles.
Keywords:  
Status Whiteboard: 
Opened: 2003-12-01 16:54 0000
Description:   Opened: 2003-12-01 16:54 0000
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 From SpanKY 2003-12-03 13:46:26 0000 -------
ive updated to 0.7.1

please use that