Merge pull request #29816 from yegortimoshenko/epsxe/fix-install
epsxe: fix install, 32-bit executable uses mixed case
This commit is contained in:
commit
1e066db4b8
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
|||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -D epsxe${optionalString stdenv.is64bit "_x64"} $out/bin/epsxe
|
install -D ${if stdenv.is64bit then "epsxe_x64" else "ePSXe"} $out/bin/epsxe
|
||||||
patchelf \
|
patchelf \
|
||||||
--set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \
|
--set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \
|
||||||
--set-rpath ${makeLibraryPath buildInputs} \
|
--set-rpath ${makeLibraryPath buildInputs} \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user