Fix running soong from different directory
${BOOTSTRAP} already contains ${BUILDDIR}
Change-Id: Ie1303e4b2a5ce415f565ffc4b6125071e427bd43
diff --git a/soong.bash b/soong.bash
index fab15de..b282a1e 100755
--- a/soong.bash
+++ b/soong.bash
@@ -8,12 +8,12 @@
# The source directory path and operating system will get written to
# .soong.bootstrap by the bootstrap script.
-if [ ! -f ${BUILDDIR}/${BOOTSTRAP} ]; then
+if [ ! -f ${BOOTSTRAP} ]; then
echo "Error: soong script must be located in a directory created by bootstrap.bash"
exit 1
fi
-source ${BUILDDIR}/.soong.bootstrap
+source ${BOOTSTRAP}
if [[ ${SRCDIR_IN:0:1} == '/' ]]; then
# SRCDIR_IN is an absolute path