diff options
author | 2022-10-12 14:02:35 +0200 | |
---|---|---|
committer | 2022-10-12 14:02:35 +0200 | |
commit | da38365112232f79c1a79aa00c6bef9fb5936549 (patch) | |
tree | 28616163a4cabb46acc3785a4c4b0f60744c422d /games-emulation | |
parent | app-shells/direnv: fix (diff) | |
download | guru-da38365112232f79c1a79aa00c6bef9fb5936549.tar.gz guru-da38365112232f79c1a79aa00c6bef9fb5936549.tar.bz2 guru-da38365112232f79c1a79aa00c6bef9fb5936549.zip |
games-emulation/yuzu-9999: app-arch/lz4 detection
Signed-off-by: Samuel Bauer <samuel.bauer@yahoo.fr>
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/yuzu/yuzu-9999.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games-emulation/yuzu/yuzu-9999.ebuild b/games-emulation/yuzu/yuzu-9999.ebuild index 7fdca80d6..330329b0d 100644 --- a/games-emulation/yuzu/yuzu-9999.ebuild +++ b/games-emulation/yuzu/yuzu-9999.ebuild @@ -107,7 +107,6 @@ src_prepare() { # Unbundle mbedtls: undefined reference to `mbedtls_cipher_cmac' sed -i -e '/mbedtls/d' externals/CMakeLists.txt || die - sed -i -e 's/mbedtls/& mbedcrypto mbedx509/' sed -i -e 's/mbedtls/& mbedcrypto mbedx509/' \ src/dedicated_room/CMakeLists.txt \ src/core/CMakeLists.txt || die @@ -140,6 +139,9 @@ src_prepare() { sed -i -e '/enet/d' externals/CMakeLists.txt || die sed -i -e '/enet\/enet\.h/{s/"/</;s/"/>/}' src/network/network.cpp || die + # LZ4 temporary fix: https://github.com/yuzu-emu/yuzu/pull/9054/commits/a8021f5a18bc5251aef54468fa6033366c6b92d9 + sed -i 's/lz4::lz4/lz4/' src/common/CMakeLists.txt || die + cmake_src_prepare } |