mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
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:
parent
3f9560fb11
commit
9f753b7aea
@ -44,7 +44,7 @@ post_configure_target() {
|
||||
}
|
||||
|
||||
make_target() {
|
||||
make -f Makefile.libretro
|
||||
R= make -f Makefile.libretro
|
||||
}
|
||||
|
||||
makeinstall_target() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user