libretro-picodrive: fix build error

The environment variable "R" leaks into the Makefile,
if it is set the build will fail. eg

export R=12345
scripts/build libretro-picodrive
...
make: *** No rule to make target '12345pico/pico.o', needed by 'picodrive_libretro.so'.  Stop.

Clear the variable before calling make to fix this issue

Signed-off-by: Matthias Reichl <hias@horus.com>
This commit is contained in:
Matthias Reichl 2019-01-28 10:58:38 +01:00
parent 3f9560fb11
commit 9f753b7aea

View File

@ -44,7 +44,7 @@ post_configure_target() {
} }
make_target() { make_target() {
make -f Makefile.libretro R= make -f Makefile.libretro
} }
makeinstall_target() { makeinstall_target() {