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