Merge pull request #193 from iKarith/master

Fix up mame rule a bit
This commit is contained in:
Twinaphex 2015-02-21 05:44:33 +01:00
commit 2b5840f309

View File

@ -494,7 +494,7 @@ build_libretro_mame_modern() {
echo "cp \"${2}_libretro${FORMAT}.$FORMAT_EXT\" \"$RARCH_DIST_DIR\""
cp "${2}_libretro${FORMAT}.$FORMAT_EXT" "$RARCH_DIST_DIR"
ret=$?
build_summary_log $ret "mame"
build_summary_log $ret "$2"
return $ret
else
echo 'MAME not fetched, skipping ...'
@ -721,6 +721,9 @@ build_summary() {
else
printf -v summary "%s%s\n\n" "$summary" " 0 cores failed to build!"
fi
if [[ -z "$build_success" && -z "$build_fail" ]]; then
printf -v summary "%s%s\n\n" "$summary" "No build actions performed."
fi
if [ -n "$BUILD_SUMMARY" ]; then
echo "$summary" > "$BUILD_SUMMARY"
fi