mirror of
https://github.com/libretro/libretro-super
synced 2025-01-05 21:54:33 +00:00
Fix paths.
This commit is contained in:
parent
6ec6169d6c
commit
ee17fadbca
@ -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
|
||||
}
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user