From 42abb86404ae6d6ffb3008f43877477cb3aca1df Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 2 Jul 2017 18:50:39 +0200 Subject: [PATCH] move this inside else block --- Makefile.libretro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.libretro b/Makefile.libretro index 69cc733..8182362 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -367,14 +367,14 @@ ifeq ($(platform), psp1) INCFLAGS += -I$(shell psp-config --pspsdk-path)/include endif -OBJOUT = -o -LINKOUT = -o ifneq (,$(findstring msvc,$(platform))) OBJOUT = -Fo LINKOUT = -out: LD = link.exe else + OBJOUT = -o + LINKOUT = -o LD = $(CC) endif