diff options
author | Colin Cross <ccross@android.com> | 2015-04-10 15:45:15 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2015-04-10 15:50:37 -0700 |
commit | 24679676cad44947ea8752d1d193b0541d942a16 (patch) | |
tree | 0f6a7de75c3e093b980ebc27b5a73af97218782f /soong.bootstrap.in | |
parent | c3c0a4962265d37a92d4df4016b3711367824364 (diff) | |
download | build_soong-24679676cad44947ea8752d1d193b0541d942a16.tar.gz build_soong-24679676cad44947ea8752d1d193b0541d942a16.tar.bz2 build_soong-24679676cad44947ea8752d1d193b0541d942a16.zip |
Fix soong scripts to support directories with spaces
Using a path with a space to execute soong is unlikely, but it
might as well work. Quote all the paths in the soong scripts.
Soong and blueprint will still both fail if the relative path between
the soong script and the source directory has a space in it, but this
is even more unlikely.
Change-Id: I8986f10115209d69b09b82ffea26e4b10d29c197
Diffstat (limited to 'soong.bootstrap.in')
-rw-r--r-- | soong.bootstrap.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/soong.bootstrap.in b/soong.bootstrap.in index 5d74567a..79e4a655 100644 --- a/soong.bootstrap.in +++ b/soong.bootstrap.in @@ -1,2 +1,2 @@ -SRCDIR_IN=@@SrcDir@@ -PREBUILTOS=@@PrebuiltOS@@ +SRCDIR_IN="@@SrcDir@@" +PREBUILTOS="@@PrebuiltOS@@" |