Hi,
the following hack may help until the ppc/powerpc issue is resolved. It
worked fine for me.
# create *powerpc* softlinks for each *ppc* file/dir:
ff=`find /usr/src/modules/mol -name '*ppc*'`
for f in $ff; do \
g=`basename $f` ; \
ln -vnfs $g ${f/ppc/powerpc} ; \
done
Till Schmalmack