mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
wine: correct install order for WoW wine build.
Per the wiki at https://wiki.winehq.org/Building_Wine#Shared_WoW64 "if you do choose to install your WoW64 build, you should run make install in the 32-bit build tree first, then in the 64-bit one." This is required, for instance, for the resulting "wineserver" executable to be the 64 bit variant not 32 bit. Which is expected by the binary loader for WoW64. This odd dependency is vaguely mentioned on the packaging wiki page: * https://wiki.winehq.org/Packaging#Binaries
This commit is contained in:
parent
9b044a1dba
commit
7f112e37d1
@ -26,7 +26,7 @@ buildPhase
|
||||
# checkPhase
|
||||
|
||||
eval "$preInstall"
|
||||
cd $TMP/wine64 && make install
|
||||
cd $TMP/wine-wow && make install
|
||||
cd $TMP/wine64 && make install
|
||||
eval "$postInstall"
|
||||
fixupPhase
|
||||
|
Loading…
Reference in New Issue
Block a user