Merge pull request #29816 from yegortimoshenko/epsxe/fix-install

epsxe: fix install, 32-bit executable uses mixed case
This commit is contained in:
Jörg Thalheim 2017-09-26 20:56:15 +01:00 committed by GitHub
commit 1e066db4b8
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
dontStrip = true;
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 \
--set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \
--set-rpath ${makeLibraryPath buildInputs} \