Created
May 31, 2012 23:29
-
-
Save Themaister/2847171 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 22c2150cc23022ca089d5906fbf9989f7b4e5e07 Mon Sep 17 00:00:00 2001 | |
From: Themaister <[email protected]> | |
Date: Fri, 1 Jun 2012 01:27:27 +0200 | |
Subject: [PATCH] Fix build for Linux. | |
--- | |
makefile.libretro | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
diff --git a/makefile.libretro b/makefile.libretro | |
index e894081..014715a 100644 | |
--- a/makefile.libretro | |
+++ b/makefile.libretro | |
@@ -48,9 +48,9 @@ include src/$(MAMEOS)/$(MAMEOS).mak | |
# combine the various definitions to one | |
CDEFS = $(DEFS) $(COREDEFS) $(CPUDEFS) $(SOUNDDEFS) | |
-$(EMULATOR): $(OBJC) $(COREOBJS) $(OSOBJS) $(DRVOBJS) | |
+$(EMULATOR): $(COREOBJS) $(OSOBJS) $(DRVOBJS) | |
@echo Linking $@... | |
- @$(CXX) $(LDFLAGS) $(OBJC) $(COREOBJS) $(OSOBJS) $(LIBS) $(DRVOBJS) -o $@ | |
+ @$(CXX) $(LDFLAGS) $(COREOBJS) $(OSOBJS) $(LIBS) $(DRVOBJS) -o $@ | |
$(OBJ)/%.o: src/%.c | |
@echo Compiling $<... | |
-- | |
1.7.10.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment