From 0f28b0cd169fb0bba301d15caefa001f856bf891 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Mon, 7 Sep 2015 14:37:32 +0100 Subject: [PATCH] (dist-scripts) psp1 salamander EBOOT was being copied before compilation. --- dist-scripts/dist-cores.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dist-scripts/dist-cores.sh b/dist-scripts/dist-cores.sh index 6cb1ff0dd5..96a9c180fc 100755 --- a/dist-scripts/dist-cores.sh +++ b/dist-scripts/dist-cores.sh @@ -16,7 +16,6 @@ mkdir -p ../pkg/${platform}/cores/ make -C ../${platform}/kernel_functions_prx/ clean || exit 1 make -C ../${platform}/kernel_functions_prx/ || exit 1 cp -f ../kernel_functions.prx ../pkg/${platform}/kernel_functions.prx -mv -f ../EBOOT.PBP ../pkg/${platform}/EBOOT.PBP # Vita elif [ $PLATFORM = "vita" ] ; then @@ -94,6 +93,9 @@ fi # Compile Salamander core if [ $SALAMANDER = "yes" ]; then make -C ../ -f Makefile.${platform}.salamander || exit 1 + if [ $PLATFORM = "psp1" ] ; then + mv -f ../EBOOT.PBP ../pkg/${platform}/EBOOT.PBP + fi fi for f in *_${platform}.${EXT} ; do