Patched wine only for one prefix?

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
User avatar
André H.
Moderator
Moderator
Posts: 207
Joined: Sun Dec 07, 2008 8:33 am

Patched wine only for one prefix?

Post by André H. »

i have a software running with an extremely patched wine, how can i have this patched wine running with the prefix of my software and everything else with my normal wine?
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

Patched wine only for one prefix?

Post by austin987 »

On Thu, Apr 9, 2009 at 10:55 AM, André H. <[email protected]> wrote:
i have a software running with an extremely patched wine, how can i have this patched wine running with the prefix of my software and everything else with my normal wine?
Install it somewhere separate (/usr/local/wine-hack/wine) and modify
your shortcut to use that version of wine.


--
-Austin
James Mckenzie

Patched wine only for one prefix?

Post by James Mckenzie »

"André H." <[email protected]> wrote on April 9th:
i have a software running with an extremely patched wine, how can i have this patched wine running with the prefix of my software and everything else with my normal wine?
My first answer would be:

cd to the directory of the program requiring patched wine
Then run this line
WINEPREFIX=<path to user wine directory> <location of patched wine>/wine <program name> <options>

This is if you built and installed your patched Wine to a different directory.

If you did not do the above, you should create a new directory with the patched wine in it and place it so that the wine and other Wine programs are not linked into /usr/bin or /usr/local/bin (many Linux distributions place both of these directories in the PATH environment variable.)

If you did the above you should be able to run programs that are in the $HOME/.wine/drive_c/Program\ Files directory structure by issuing the command
wine <program name> in the executible's directory.

I have made the assumption that you know how to install both the patched and unpatched versions and how to link and unlink files from their symbolic links in /usr/bin and /usr/local/bin.

James McKenzie
User avatar
André H.
Moderator
Moderator
Posts: 207
Joined: Sun Dec 07, 2008 8:33 am

Post by André H. »

ah great, thank you very much
Locked