http://bugs.winehq.org/show_bug.cgi?id=27111
--- Comment #1 from Dan Kegel dank@kegel.com 2011-05-08 21:51:00 CDT --- For the record, the purported culprit(s) were found by running
git pull git bisect start git bisect bad git bisect good wine-1.3.19 git bisect run sh bisect.sh
with bisect.sh containing
#!/bin/sh CFLAGS="-O1 -g" ./configure --disable-tests --without-nas || exit 125 make clean make -j16 || exit 125 rm -rf $HOME/.wine || exit 125 unset WINEPREFIX WINE=$HOME/wine-git/wine sh ~/winetricks/src/winetricks --no-isolate -q aoe3_demo if ! test -d ~/".wine/drive_c/Program Files/Microsoft Games/Age of Empires III Trial" then echo good directory not found exit 125 fi if test -d ~/.wine/drive_c/"Age of Empires III" then echo Bad directory found exit 1 fi echo bad dir not found exit 0