From 222d5621fd8298dd8eb44b52a7774e98e6eb21b7 Mon Sep 17 00:00:00 2001 From: Nat Goodspeed Date: Tue, 8 Nov 2016 22:22:39 -0800 Subject: DRTVWR-418: Use separate XML string elements for command arguments. autobuild now passes a vector of arguments to the commands it executes, instead of smashing everything together into a single string only to have cmd.exe parse it back into individual arguments again. In general, this is a good thing and more robust than before. However, it surfaces the fact that sometimes people were lazy and encoded things like "-configuration Release" or "-j 12" as single elements in the XML. When such things are handed to the command as a single argument string containing a space, it can get confused. Code (e.g.) -configurationRelease instead. --- autobuild.xml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/autobuild.xml b/autobuild.xml index 148506caa7..34ea70cb11 100755 --- a/autobuild.xml +++ b/autobuild.xml @@ -3296,8 +3296,8 @@ options - -configuration RelWithDebInfo - -project SecondLife.xcodeproj + -configurationRelWithDebInfo + -projectSecondLife.xcodeproj configure @@ -3325,8 +3325,8 @@ xcodebuild options - -configuration RelWithDebInfo - -project SecondLife.xcodeproj + -configurationRelWithDebInfo + -projectSecondLife.xcodeproj configure @@ -3352,8 +3352,8 @@ options - -configuration Release - -project SecondLife.xcodeproj + -configurationRelease + -projectSecondLife.xcodeproj -DENABLE_SIGNING:BOOL=YES -DSIGNING_IDENTITY:STRING="Developer ID Application: Linden Research, Inc." @@ -3416,7 +3416,7 @@ make options - -j 12 + -j12 configure @@ -3444,7 +3444,7 @@ make options - -j 7 + -j7 configure @@ -3466,7 +3466,7 @@ make options - -j 12 + -j12 configure @@ -3492,7 +3492,7 @@ make options - -j 7 + -j7 configure -- cgit v1.2.3