2009/5/5 Mike Kaplinskiy <[email protected]>: > On Mon, May 4, 2009 at 9:27 PM, Christopher Harvey > <[email protected]> wrote: >> I just built wine out of git. >> Ran this: >> wine-git $ find . -name winedbg >> ./programs/winedbg >> >> notice there is no winedbg program. The output there is a folder only. >> Where is the winedbg program within the git tree? >> > I'm pretty sure it's inside that folder and it itself is a wine > executable, so you would run it like: > > ./wine ./programs/winedbg/winedbg.exe.so
Indeed. This will yield the results you want: $ find . -type f -name 'winedbg*'
