File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -1095,7 +1095,12 @@ jobs:
10951095 - name : Build frontend
10961096 run : |
10971097 cd ~
1098- git clone https://github.com/libretro/RetroArch retroarch --depth 1 -b $(curl -s https://api.github.com/repos/libretro/RetroArch/releases/latest | jq -r '.tag_name')
1098+ tag_name=$(curl -s https://api.github.com/repos/libretro/RetroArch/releases/latest | jq -r '.tag_name')
1099+ git clone https://github.com/libretro/RetroArch retroarch --depth 1 -b $tag_name
1100+ if [ $tag_name = 'v1.20.0' ]
1101+ then
1102+ sed -i 's/-Wl,-q/-Wl,-q,--pic-veneer/g' retroarch/Makefile.vita
1103+ fi
10991104 mv mkxp-z_libretro.a retroarch/libretro_vita.a
11001105 cd retroarch
11011106 CLICOLOR_FORCE=1 make -f Makefile.vita LIBRETRO=mkxp-z
You can’t perform that action at this time.
0 commit comments