mirror of
https://github.com/libretro/libretro-super
synced 2024-12-03 01:01:51 +00:00
multiple cmds for -build and -fetch
This commit is contained in:
parent
e556aa6432
commit
62647b60ab
@ -91,9 +91,12 @@ echo "STRIP = $STRIP"
|
|||||||
|
|
||||||
mkdir -p "$RARCH_DIST_DIR"
|
mkdir -p "$RARCH_DIST_DIR"
|
||||||
|
|
||||||
if [ $1 ]; then
|
if [ -n "${1}" ]; then
|
||||||
NOBUILD_SUMMARY=1
|
NOBUILD_SUMMARY=1
|
||||||
$1
|
while [ -n "${1}" ]; do
|
||||||
|
"${1}"
|
||||||
|
shift
|
||||||
|
done
|
||||||
else
|
else
|
||||||
build_libretro_2048
|
build_libretro_2048
|
||||||
build_libretro_4do
|
build_libretro_4do
|
||||||
|
@ -362,8 +362,11 @@ fetch_libretro_emux() {
|
|||||||
fetch_git "$REPO_BASE/libretro/emux.git" "libretro-emux" "libretro/Emux"
|
fetch_git "$REPO_BASE/libretro/emux.git" "libretro-emux" "libretro/Emux"
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ ${1} ]; then
|
if [ -n "${1}" ]; then
|
||||||
${1}
|
while [ -n "${1}" ]; do
|
||||||
|
"${1}"
|
||||||
|
shift
|
||||||
|
done
|
||||||
else
|
else
|
||||||
fetch_retroarch
|
fetch_retroarch
|
||||||
fetch_tools
|
fetch_tools
|
||||||
|
Loading…
Reference in New Issue
Block a user