From ee17fadbca6860397cac4770e16a9d722e8c07ea Mon Sep 17 00:00:00 2001 From: Themaister Date: Mon, 16 Apr 2012 21:12:36 +0200 Subject: [PATCH] Fix paths. --- libretro-build.sh | 6 +++--- libretro-install.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libretro-build.sh b/libretro-build.sh index 4541b604..c05a5a96 100755 --- a/libretro-build.sh +++ b/libretro-build.sh @@ -12,7 +12,7 @@ build_libretro_bsnes() echo "=== Building bSNES performance ===" cd libretro-bsnes/perf make profile=performance -j4 || die "Failed to build bSNES performance core" - cp -f out/libretro.so ../libretro-performance.so + cp -f out/libretro.so ../libretro-bsnes-performance.so cd ../.. else echo "bSNES performance not fetched, skipping ..." @@ -22,7 +22,7 @@ build_libretro_bsnes() echo "=== Building bSNES compatibility ===" cd libretro-bsnes/compat make profile=compatibility -j4 || die "Failed to build bSNES compatibility core" - cp -f out/libretro.so ../libretro-compat.so + cp -f out/libretro.so ../libretro-bsnes-compat.so cd ../.. else echo "bSNES compat not fetched, skipping ..." @@ -32,7 +32,7 @@ build_libretro_bsnes() echo "=== Building bSNES accuracy ===" cd libretro-bsnes make profile=accuracy -j4 || die "Failed to build bSNES accuracy core" - cp -f out/libretro.so libretro-accuracy.so + cp -f out/libretro.so libretro-bsnes-accuracy.so cd .. fi } diff --git a/libretro-install.sh b/libretro-install.sh index 6a44ae47..aa9c18b7 100755 --- a/libretro-install.sh +++ b/libretro-install.sh @@ -11,9 +11,9 @@ if [ ! -d "$PREFIX/lib/libretro" ]; then fi LIBS="" -LIBS="$LIBS libretro-bsnes/libretro-performance.so" -LIBS="$LIBS libretro-bsnes/libretro-compat.so" -LIBS="$LIBS libretro-bsnes/libretro-accuracy.so" +LIBS="$LIBS libretro-bsnes/libretro-bsnes-performance.so" +LIBS="$LIBS libretro-bsnes/libretro-bsnes-compat.so" +LIBS="$LIBS libretro-bsnes/libretro-bsnes-accuracy.so" LIBS="$LIBS libretro-s9x/libretro-snes9x.so" LIBS="$LIBS libretro-s9x-next/libretro-snes9x-next.so" LIBS="$LIBS libretro-genplus/libretro-genplus.so"