aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Kristina Chodorow <kchodorow@google.com>2016-05-20 17:33:56 +0000
committerGravatar Yue Gan <yueg@google.com>2016-05-23 08:24:21 +0000
commit009b48bcfaf4ebb17f9ab03bea9036cfa3c12ff0 (patch)
treef035c305f4231bf9ed78b1611bd7f0b0aa25e4fb /scripts
parentac5080ed5ac3570fb8bf4541b06e90954175f0e0 (diff)
Remove .bazelrc
This hasn't been used in several releases. -- MOS_MIGRATED_REVID=122844213
Diffstat (limited to 'scripts')
-rw-r--r--scripts/packages/BUILD9
-rwxr-xr-xscripts/packages/template_bin.sh24
2 files changed, 2 insertions, 31 deletions
diff --git a/scripts/packages/BUILD b/scripts/packages/BUILD
index e2f5efef92..38fc2f3b15 100644
--- a/scripts/packages/BUILD
+++ b/scripts/packages/BUILD
@@ -65,14 +65,6 @@ pkg_tar(
strip_prefix = ".",
)
-pkg_tar(
- name = "bazel-rc",
- files = ["debian/bazel.bazelrc"],
- mode = "0644",
- package_dir = "/etc",
- strip_prefix = "debian",
-)
-
genrule(
name = "rename-bazel-completion",
srcs = ["//scripts:bash_completion"],
@@ -93,7 +85,6 @@ pkg_tar(
deps = [
":bazel-bin",
":bazel-completion",
- ":bazel-rc",
],
)
diff --git a/scripts/packages/template_bin.sh b/scripts/packages/template_bin.sh
index 5b1cfa943c..4695ccd750 100755
--- a/scripts/packages/template_bin.sh
+++ b/scripts/packages/template_bin.sh
@@ -18,8 +18,6 @@
# Installation and etc prefix can be overriden from command line
install_prefix=${1:-"/usr/local"}
-# TODO(kchodorow): delete by April 2016.
-bazelrc=${2:-"/etc/bazel.bazelrc"}
progname="$0"
@@ -36,25 +34,20 @@ function usage() {
echo " --prefix=/some/path set the prefix path (default=/usr/local)." >&2
echo " --bin= set the binary folder path (default=%prefix%/bin)." >&2
echo " --base= set the base install path (default=%prefix%/lib/bazel)." >&2
- echo " --bazelrc= set the path to bazelrc (default=/etc/bazelrc)." >&2
echo " --user configure for user install, expands to:" >&2
- echo ' --bin=$HOME/bin --base=$HOME/.bazel --bazelrc=$HOME/.bazelrc' >&2
+ echo ' --bin=$HOME/bin --base=$HOME/.bazel' >&2
exit 1
}
prefix="/usr/local"
bin="%prefix%/bin"
base="%prefix%/lib/bazel"
-bazelrc="/etc/bazel.bazelrc"
for opt in "${@}"; do
case $opt in
--prefix=*)
prefix="$(echo "$opt" | cut -d '=' -f 2-)"
;;
- --bazelrc=*)
- bazelrc="$(echo "$opt" | cut -d '=' -f 2-)"
- ;;
--bin=*)
bin="$(echo "$opt" | cut -d '=' -f 2-)"
;;
@@ -64,7 +57,6 @@ for opt in "${@}"; do
--user)
bin="$HOME/bin"
base="$HOME/.bazel"
- bazelrc="$HOME/.bazelrc"
;;
*)
usage
@@ -74,7 +66,6 @@ done
bin="${bin//%prefix%/${prefix}}"
base="${base//%prefix%/${prefix}}"
-bazelrc="${bazelrc//%prefix%/${prefix}}"
function test_write() {
local file="$1"
@@ -127,7 +118,6 @@ fi
# Test for write access
test_write "${bin}"
test_write "${base}"
-test_write "${bazelrc}"
# Do the actual installation
echo -n "Uncompressing."
@@ -153,17 +143,7 @@ echo -n .
ln -s "${base}/bin/bazel" "${bin}/bazel"
echo -n .
-if [ -f "${bazelrc}" ]; then
- echo
- echo "${bazelrc} already exists, moving it to ${bazelrc}.bak."
- mv "${bazelrc}" "${bazelrc}.bak"
-fi
-
-# Not necessary, but this way it matches the Debian package.
-touch "${bazelrc}"
-if [ "${UID}" -eq 0 ]; then
- chmod 0644 "${bazelrc}"
-else
+if [ "${UID}" -ne 0 ]; then
# Uncompress the bazel base install for faster startup time
"${bin}/bazel" help >/dev/null
fi