diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2016-11-16 15:47:21 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2016-11-16 15:47:21 -0500 |
commit | 5eda71f98d4d4adf037891296ef87768c8fd280d (patch) | |
tree | a9d0095fb4d8961c63cf394b8ff65a5ad89f918b | |
parent | f5e983962703b5cb39278048b1c35e712b2b2263 (diff) |
DRTVWR-418: Remove obsolete quotes from autobuild.xml.
With the new autobuild command infrastructure, the quotes that used to be
necessary for correct command-line parsing are now actually undesirable: they
are passed literally to the command in question, causing (e.g.) cmake to
complain that although it knows of a generator called Xcode, there's no
generator called 'Xcode'.
-rw-r--r-- | autobuild.xml | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/autobuild.xml b/autobuild.xml index 6861becb1c..f8f1558679 100644 --- a/autobuild.xml +++ b/autobuild.xml @@ -3309,7 +3309,7 @@ <key>options</key> <array> <string>-G</string> - <string>'Xcode'</string> + <string>Xcode</string> </array> </map> <key>default</key> @@ -3334,7 +3334,7 @@ <key>options</key> <array> <string>-G</string> - <string>'Xcode'</string> + <string>Xcode</string> </array> </map> <key>name</key> @@ -3355,7 +3355,7 @@ <string>-configuration</string><string>Release</string> <string>-project</string><string>SecondLife.xcodeproj</string> <string>-DENABLE_SIGNING:BOOL=YES</string> - <string>-DSIGNING_IDENTITY:STRING="Developer ID Application: Linden Research, Inc."</string> + <string>-DSIGNING_IDENTITY:STRING=Developer ID Application: Linden Research, Inc.</string> </array> </map> <key>configure</key> @@ -3367,7 +3367,7 @@ <key>options</key> <array> <string>-G</string> - <string>'Xcode'</string> + <string>Xcode</string> </array> </map> <key>name</key> @@ -3384,7 +3384,7 @@ <string>-configuration Release</string> <string>-project SecondLife.xcodeproj</string> <string>-DENABLE_SIGNING:BOOL=YES</string> - <string>-DSIGNING_IDENTITY:STRING="Developer ID Application: Linden Research, Inc."</string> + <string>-DSIGNING_IDENTITY:STRING=Developer ID Application: Linden Research, Inc.</string> </array> </map> <key>configure</key> @@ -3392,7 +3392,7 @@ <key>options</key> <array> <string>-G</string> - <string>'Xcode'</string> + <string>Xcode</string> </array> </map> <key>name</key> @@ -3428,7 +3428,7 @@ <key>options</key> <array> <string>-G</string> - <string>'Unix Makefiles'</string> + <string>Unix Makefiles</string> </array> </map> <key>default</key> @@ -3452,7 +3452,7 @@ <key>options</key> <array> <string>-G</string> - <string>'Unix Makefiles'</string> + <string>Unix Makefiles</string> </array> </map> <key>name</key> @@ -3478,7 +3478,7 @@ <key>options</key> <array> <string>-G</string> - <string>'Unix Makefiles'</string> + <string>Unix Makefiles</string> </array> </map> <key>name</key> @@ -3500,7 +3500,7 @@ <key>options</key> <array> <string>-G</string> - <string>'Unix Makefiles'</string> + <string>Unix Makefiles</string> </array> </map> <key>name</key> @@ -3537,7 +3537,7 @@ <key>options</key> <array> <string>/build</string> - <string>"RelWithDebInfo|${AUTOBUILD_WIN_VSPLATFORM|NOTWIN}"</string> + <string>RelWithDebInfo|${AUTOBUILD_WIN_VSPLATFORM|NOTWIN}</string> </array> </map> <key>configure</key> @@ -3575,7 +3575,7 @@ <string>/p:useenv=true</string> <string>/verbosity:minimal</string> <string>/toolsversion:4.0</string> - <string>/p:"VCBuildAdditionalOptions= /incremental"</string> + <string>/p:VCBuildAdditionalOptions= /incremental</string> </array> </map> <key>configure</key> @@ -3609,7 +3609,7 @@ <key>options</key> <array> <string>/build</string> - <string>"Release|${AUTOBUILD_WIN_VSPLATFORM|NOTWIN}"</string> + <string>Release|${AUTOBUILD_WIN_VSPLATFORM|NOTWIN}</string> </array> </map> <key>configure</key> @@ -3645,7 +3645,7 @@ <string>/p:useenv=true</string> <string>/verbosity:minimal</string> <string>/toolsversion:4.0</string> - <string>/p:"VCBuildAdditionalOptions= /incremental"</string> + <string>/p:VCBuildAdditionalOptions= /incremental</string> </array> </map> <key>configure</key> |