diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-29 21:34:32 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-30 07:53:40 +0200 |
commit | 82e030bf1d3e8e7d66eeede661731afe1ea5dd87 (patch) | |
tree | 6ce3f43da8e185f61f0979610624b66f27a53023 /ios | |
parent | 95cedfd95a67b39852b9ae0248207ae8750b4f1e (diff) |
No need to verify the Xcode "configuration" ("Debug" or "Release") matching
Change-Id: I5c2e05feecffa1679930b041854b1cd190ef007a
Diffstat (limited to 'ios')
-rw-r--r-- | ios/CustomTarget_LibreOffice_app.mk | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ios/CustomTarget_LibreOffice_app.mk b/ios/CustomTarget_LibreOffice_app.mk index 82e8566532a2..581ebb41ec3f 100644 --- a/ios/CustomTarget_LibreOffice_app.mk +++ b/ios/CustomTarget_LibreOffice_app.mk @@ -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),) |