Nope. Escaping the paths does not help. (The variable cannot be set at all.)
I guess I'll remove the space in the paths… On Sep 1, 2013, at 4:00 PM, Harbs wrote: > Okay. Getting somewhere… > > It looks like it's splitting the space into two separate paths: > ls: /Users/harbs/Apache: No such file or directory > ls: Flex/Dependencies/player/: No such file or directory > > Does the build script not support vars with spaces? Do I need to double > escape the variable? > > I'm setting it like this: > PLAYERGLOBAL_HOME=/Users/harbs/Apache\ Flex/Dependencies/player/ > > I'll try to double escape the spaces and see if that helps… > > On Sep 1, 2013, at 3:54 PM, Justin Mclean wrote: > >> Hi, >> >>> The variable is set: >>> echo $PLAYERGLOBAL_HOME >>> /Users/harbs/Apache Flex/Dependencies/player/ >>> >>> And the file structure looks like this: >>> /Users/harbs/Apache Flex/Dependencies/player/11.1/playerglobal.swc >>> (I only added 11.1) >> >> Looks OK to me but try this: >> ls $PLAYERGLOBAL_HOME >> >> I get: >> 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 11.5 >> 11.6 11.7 11.8 >> >> And in each directory is a playerglobal.swc. eg >> ls $PLAYERGLOBAL_HOME/11.5 >> gives: >> playerglobal.swc >> >> You might want to check frameworks/flex-config.xml and see what that >> target-player is set to 11.1 like so " <target-player>11.1</target-player>". >> >> Justin >> >