http://bugs.winehq.org/show_bug.cgi?id=34122
--- Comment #12 from keks9n@gmail.com 2013-11-09 08:59:06 CST --- I figured out an actual workaround
cd %HERE_IS_YOUR_CIV5_DIR%/Assets mv DLC ../DLC.orig # Only first time mount -t tmpfs tmpfs DLC cd DLC for i in `ls ../../DLC.orig/|tac`; do ln -s ../../DLC.orig/$i .; done;
That's it. tmpfs lists files in the order in which they were created (reversed), so your test program, civ5 and ls -la --sort=no gets them right.
You need to mount tmpfs and create symlinks after every reboot, but it works.