aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.bash
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2016-04-27 16:10:38 -0700
committerColin Cross <ccross@android.com>2016-04-29 13:59:56 -0700
commit1474741435774f15923967e50bf7531a3cc9d4f7 (patch)
treeca23ce8c26f725a5394ff44d5c27a461131a26ee /bootstrap.bash
parent369f01315a669f32f741659ae9a5f5c4fb7b7fad (diff)
downloadbuild_soong-1474741435774f15923967e50bf7531a3cc9d4f7.tar.gz
build_soong-1474741435774f15923967e50bf7531a3cc9d4f7.tar.bz2
build_soong-1474741435774f15923967e50bf7531a3cc9d4f7.zip
Move shell and python scripts to scripts/ directory
Change-Id: Icdff44a54d14ddfc2266d99cf0578a8105716918
Diffstat (limited to 'bootstrap.bash')
-rwxr-xr-xbootstrap.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.bash b/bootstrap.bash
index 62c429c5..e48f4803 100755
--- a/bootstrap.bash
+++ b/bootstrap.bash
@@ -8,7 +8,7 @@ if [[ "$ORIG_SRCDIR" != "." ]]; then
echo "error: To use BUILDDIR, run from the source directory"
exit 1
fi
- export BUILDDIR=$("${ORIG_SRCDIR}/build/soong/reverse_path.py" "$ORIG_SRCDIR")
+ export BUILDDIR=$("${ORIG_SRCDIR}/build/soong/scripts/reverse_path.py" "$ORIG_SRCDIR")
cd $ORIG_SRCDIR
fi
if [[ -z "$BUILDDIR" ]]; then
@@ -45,7 +45,7 @@ if [[ $# -eq 0 ]]; then
exit 1
fi
- export SRCDIR_FROM_BUILDDIR=$(build/soong/reverse_path.py "$BUILDDIR")
+ export SRCDIR_FROM_BUILDDIR=$(build/soong/scripts/reverse_path.py "$BUILDDIR")
sed -e "s|@@BuildDir@@|${BUILDDIR}|" \
-e "s|@@SrcDirFromBuildDir@@|${SRCDIR_FROM_BUILDDIR}|" \