http://bugs.winehq.org/show_bug.cgi?id=26872
--- Comment #9 from hennr hennr@hennr.name 2011-06-07 04:10:48 CDT --- (In reply to comment #8)
Annoyingly, I don't know where it saves this file to check it exists.
Hi Ken,
thanks for testing again.
I use something like this to find differences between two installations:
# we calculate a md5sum for every file and... find .wine/drive_c/Program\ Files/THQ/Dawn\ of\ War\ -\ Soulstorm\ Demo/ -type f -print0 | xargs -0 md5sum > dow-soulstorm-demo-new.md5 # ...list all folders... find .wine/drive_c/Program\ Files/THQ/Dawn\ of\ War\ -\ Soulstorm\ Demo/ -type d >> dow-soulstorm-demo-new.md5 # write both information into a file and diff it with an already existing md5sum-file diff dow-soulstorm-demo.md5 dow-soulstorm-demo-new.md5
So what you need to do is:
- remove the demo and make a clean new installation. - Calculate the md5sums and list the dirs as above. - Create a profile and rerun the md5sum / list dirs part, saving the output to a second file. - Diff both files.
Can you "rewrite" the parts needed for you?