[Scummvm-git-logs] scummvm master -> d3dc102b6a0547d0711a74d6c8cf1f9f6e1250a8

criezy criezy at scummvm.org
Mon Oct 5 09:47:54 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
d3dc102b6a BUILD: Fix making iphone bundles


Commit: d3dc102b6a0547d0711a74d6c8cf1f9f6e1250a8
    https://github.com/scummvm/scummvm/commit/d3dc102b6a0547d0711a74d6c8cf1f9f6e1250a8
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2020-10-05T10:41:16+01:00

Commit Message:
BUILD: Fix making iphone bundles

Changed paths:
    ports.mk


diff --git a/ports.mk b/ports.mk
index 3629fe1f3a..7d62629f1e 100644
--- a/ports.mk
+++ b/ports.mk
@@ -424,15 +424,15 @@ endif
 # Special target to create a static linked binary for Mac OS X.
 # We use -force_cpusubtype_ALL to ensure the binary runs on every
 # PowerPC machine.
-scummvm-static: $(OBJS) $(DETECT_OBJS)
-	$(CXX) $(LDFLAGS) -force_cpusubtype_ALL -o scummvm-static $(OBJS) $(DETECT_OBJS) \
+scummvm-static: $(DETECT_OBJS) $(OBJS)
+	$(CXX) $(LDFLAGS) -force_cpusubtype_ALL -o scummvm-static $(DETECT_OBJS) $(OBJS) \
 		-framework CoreMIDI \
 		$(OSX_STATIC_LIBS) \
 		$(OSX_ZLIB)
 
 # Special target to create a static linked binary for the iPhone (legacy, and iOS 7+)
-iphone: $(OBJS)
-	$(CXX) $(LDFLAGS) -o scummvm $(OBJS) \
+iphone: $(DETECT_OBJS) $(OBJS)
+	$(CXX) $(LDFLAGS) -o scummvm $(DETECT_OBJS) $(OBJS) \
 		$(OSX_STATIC_LIBS) \
 		-framework UIKit -framework CoreGraphics -framework OpenGLES \
 		-framework CoreFoundation -framework QuartzCore -framework Foundation \




More information about the Scummvm-git-logs mailing list