Fix paths.
This commit is contained in:
parent
6ec6169d6c
commit
ee17fadbca
|
@ -12,7 +12,7 @@ build_libretro_bsnes()
|
||||||
echo "=== Building bSNES performance ==="
|
echo "=== Building bSNES performance ==="
|
||||||
cd libretro-bsnes/perf
|
cd libretro-bsnes/perf
|
||||||
make profile=performance -j4 || die "Failed to build bSNES performance core"
|
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 ../..
|
cd ../..
|
||||||
else
|
else
|
||||||
echo "bSNES performance not fetched, skipping ..."
|
echo "bSNES performance not fetched, skipping ..."
|
||||||
|
@ -22,7 +22,7 @@ build_libretro_bsnes()
|
||||||
echo "=== Building bSNES compatibility ==="
|
echo "=== Building bSNES compatibility ==="
|
||||||
cd libretro-bsnes/compat
|
cd libretro-bsnes/compat
|
||||||
make profile=compatibility -j4 || die "Failed to build bSNES compatibility core"
|
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 ../..
|
cd ../..
|
||||||
else
|
else
|
||||||
echo "bSNES compat not fetched, skipping ..."
|
echo "bSNES compat not fetched, skipping ..."
|
||||||
|
@ -32,7 +32,7 @@ build_libretro_bsnes()
|
||||||
echo "=== Building bSNES accuracy ==="
|
echo "=== Building bSNES accuracy ==="
|
||||||
cd libretro-bsnes
|
cd libretro-bsnes
|
||||||
make profile=accuracy -j4 || die "Failed to build bSNES accuracy core"
|
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 ..
|
cd ..
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,9 +11,9 @@ if [ ! -d "$PREFIX/lib/libretro" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
LIBS=""
|
LIBS=""
|
||||||
LIBS="$LIBS libretro-bsnes/libretro-performance.so"
|
LIBS="$LIBS libretro-bsnes/libretro-bsnes-performance.so"
|
||||||
LIBS="$LIBS libretro-bsnes/libretro-compat.so"
|
LIBS="$LIBS libretro-bsnes/libretro-bsnes-compat.so"
|
||||||
LIBS="$LIBS libretro-bsnes/libretro-accuracy.so"
|
LIBS="$LIBS libretro-bsnes/libretro-bsnes-accuracy.so"
|
||||||
LIBS="$LIBS libretro-s9x/libretro-snes9x.so"
|
LIBS="$LIBS libretro-s9x/libretro-snes9x.so"
|
||||||
LIBS="$LIBS libretro-s9x-next/libretro-snes9x-next.so"
|
LIBS="$LIBS libretro-s9x-next/libretro-snes9x-next.so"
|
||||||
LIBS="$LIBS libretro-genplus/libretro-genplus.so"
|
LIBS="$LIBS libretro-genplus/libretro-genplus.so"
|
||||||
|
|
Loading…
Reference in New Issue