aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xcompile.sh2
-rwxr-xr-xscripts/bootstrap/bootstrap.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/compile.sh b/compile.sh
index 9f435e0b2b..880555dc80 100755
--- a/compile.sh
+++ b/compile.sh
@@ -89,7 +89,7 @@ if [ $DO_COMPILE ]; then
new_step 'Building Bazel with Bazel'
display "."
log "Building output/bazel"
- bazel_build //src:bazel
+ bazel_build src:bazel
cp -f bazel-bin/src/bazel output/bazel
chmod 0755 output/bazel
BAZEL=$(pwd)/output/bazel
diff --git a/scripts/bootstrap/bootstrap.sh b/scripts/bootstrap/bootstrap.sh
index 16a13c9042..13e71c0e6f 100755
--- a/scripts/bootstrap/bootstrap.sh
+++ b/scripts/bootstrap/bootstrap.sh
@@ -77,7 +77,7 @@ function get_outputs_sum() {
function bootstrap_test() {
local BAZEL_BIN=$1
local BAZEL_SUM=$2
- local BAZEL_TARGET=${3:-//src:bazel}
+ local BAZEL_TARGET=${3:-src:bazel}
[ -x "${BAZEL_BIN}" ] || fail "syntax: bootstrap bazel-binary"
run_silent ${BAZEL_BIN} --nomaster_bazelrc --bazelrc=${BAZELRC} clean \
--expunge || return $?