Kaydet (Commit) 82e030bf authored tarafından Tor Lillqvist's avatar Tor Lillqvist

No need to verify the Xcode "configuration" ("Debug" or "Release") matching

Change-Id: I5c2e05feecffa1679930b041854b1cd190ef007a
üst 95cedfd9
......@@ -20,12 +20,6 @@ xcode_sdk=iphoneos
xcode_arch=armv7
endif
ifeq ($(debug),)
xcode_config := Release
else
xcode_config := Debug
endif
# If run from Xcode, check that its configuration (device or
# simulator) matches that of gbuild. We detect being run from Xcode by
# looking for $(SCRIPT_OUTPUT_FILE_0). The Run Script build phase in
......@@ -40,10 +34,6 @@ ifneq ($(CURRENT_ARCH),$(xcode_arch))
$(error Xcode platform ($(CURRENT_ARCH)) does not match that of this build tree ($(xcode_arch)))
endif
ifneq ($(CONFIGURATION),$(xcode_config))
$(error Xcode configuration ($(CONFIGURATION)) does not match that of this build tree ($(xcode_config)))
endif
endif
ifneq ($(SCRIPT_OUTPUT_FILE_0),)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment