http://bugs.winehq.org/show_bug.cgi?id=11792
--- Comment #4 from Saulius K. saulius2@gmail.com 2008-03-04 02:41:40 --- If the patch bisect found is needed for compilation of earlier tree, I usually do:
$ git-format-patch -o regr_patches/ HEAD^..HEAD $ git-reset --hard HEAD^ # reset the needed patch $ git-reset --hard HEAD^^^^ # reset more patches backwards in time $ git-am -3 regr_patches/0001* # import the needed patch $ ./configure && make depend && make && tools/wineprefixcreate --use-wine-tree .
Or something like that. HTH.