Fix paths.

This commit is contained in:
Themaister 2012-04-16 21:12:36 +02:00
parent 6ec6169d6c
commit ee17fadbca
2 changed files with 6 additions and 6 deletions

View file

@ -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
}

View file

@ -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"