diff --git a/games-emulation/parallel_n64_libretro/parallel_n64_libretro-2.0rc2_20200708.recipe b/games-emulation/parallel_n64_libretro/parallel_n64_libretro-2.0rc2_20200708.recipe index 1754e3040..a1c1a73b2 100644 --- a/games-emulation/parallel_n64_libretro/parallel_n64_libretro-2.0rc2_20200708.recipe +++ b/games-emulation/parallel_n64_libretro/parallel_n64_libretro-2.0rc2_20200708.recipe @@ -4,7 +4,7 @@ This offers much better accuracy than any HLE implementation." HOMEPAGE="https://github.com/libretro/parallel-n64" COPYRIGHT="2019-2020 the libretro team" LICENSE="GNU GPL v2" -REVISION="1" +REVISION="2" srcGitRev="82c352e27049ae39e30c8d1cffabec6cbc581a3c" SOURCE_URI="https://github.com/libretro/parallel-n64/archive/$srcGitRev.tar.gz" CHECKSUM_SHA256="234af88b3955fab301a4bff8cba21343fe111df718477349852e15a2ade8b20c" @@ -43,7 +43,12 @@ BUILD() sed -e "s/@DISPLAY_VERSION@/v${portVersion/_/-}/" \ $portDir/additional-files/parallel_n64_libretro.info.in \ > parallel_n64_libretro.info - make $jobArgs + if [ "$targetArchitecture" = x86_gcc2 ]; then + ARCH=x86 + elif [ "$targetArchitecture" = x86_64 ]; then + ARCH=x86_64 + fi + make WITH_DYNAREC=$ARCH $jobArgs } INSTALL()