"wine --version" outputs the version of my normal wine installation
"/path/to/my/wine --version" correctly outputs the version of the wine I compiled
I tried the environment variables from "man wine"
Code: Select all
WINESERVER
Specifies the path and name of the wineserver binary. If not
set, Wine will try to load /usr/local/bin/wineserver, and if
this doesn't exist it will then look for a file named "wine‐
server" in the path and in a few other likely locations.
WINELOADER
Specifies the path and name of the wine binary to use to launch
new Windows processes. If not set, Wine will try to load
/usr/local/bin/wine, and if this doesn't exist it will then look
for a file named "wine" in the path and in a few other likely
locations.
checked with "env" that the variables are correct
but "wine --version" still returns the normal installation
the same if I put it all on one line like "WINELOADER=/path/to/my/wine WINESERVER=/path/to/my/wineserver wine --version"
How can I get the command "wine" to point to my binaries?

Or is this the wrong way to do it? The program itself isn't a Windows binary, it's a Linux app that uses wine for other things, so I can't just run it with "/path/to/my/wine program"
Thanks