diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2015-01-22 14:43:08 -0500 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2015-01-22 14:43:08 -0500 | 
| commit | 9b11ed284358910c6ee7fa4d088f81677bc92fbc (patch) | |
| tree | b166954ee2e2f97c4e32e859894040ce30ce248b | |
| parent | 6d7858c53a37ab2553f0aed370ac80ad68b8a306 (diff) | |
Ensure AUTOBUILD is in native_path form for non-cygwin tools.
Until we can propagate the corresponding buildscripts changes, we must
explicitly put AUTOBUILD in proper form. For now, assume that AUTOBUILD has
not yet been normalized.
| -rwxr-xr-x | build.sh | 2 | 
1 files changed, 2 insertions, 0 deletions
| @@ -216,6 +216,8 @@ fi  # Check to see if we're skipping the platform  eval '$build_'"$arch" || pass +# ensure AUTOBUILD is in native path form for child processes +AUTOBUILD="$(native_path "$AUTOBUILD")"  # set "$autobuild" to cygwin path form for use locally in this script  autobuild="$(shell_path "$AUTOBUILD")"  if [ ! -x "$autobuild" ] | 
