Such topic may belong to wine-users, but I am not sure.
When installing IE6 (from my own script) I see wineboot is being forked and gets running right after the "./wine IE6SETUP.EXE /q" statement returns me a control.
I would like to wait untill "wineboot" finishes. How it can be achieved in my bash script?
Maybe wineboot can be set to not fork? (though I don't know if "fork" is right term to use here)
Saturday, May 6, 2006, 6:45:02 AM, Saulius Krasuckas wrote:
Such topic may belong to wine-users, but I am not sure.
When installing IE6 (from my own script) I see wineboot is being forked and gets running right after the "./wine IE6SETUP.EXE /q" statement returns me a control.
I would like to wait untill "wineboot" finishes. How it can be achieved in my bash script?
Maybe wineboot can be set to not fork? (though I don't know if "fork" is right term to use here)
wineserver -w
Vitaliy
* On Sat, 6 May 2006, Vitaliy Margolen wrote:
- Saturday, May 6, 2006, 6:45:02 AM, Saulius Krasuckas wrote:
I would like to wait untill "wineboot" finishes. How it can be achieved in my bash script?
wineserver -w
Heh, I didn't know how to run wineserver from my local wine tree, but sh -x helped me a lot ;)
LD_LIBRARY_PATH=libs server/wineserver -w
Thanks.