From f318e9ef201388788f9208945d4e0e91d4c448f3 Mon Sep 17 00:00:00 2001 From: Rodrigo Queiro Date: Mon, 1 Mar 2021 12:59:21 +0100 Subject: [PATCH] Rename BUILD to BUILD.bazel. This avoids conflicts with build/ on case-insensitive filesystems. Fixes #606. --- BUILD => BUILD.bazel | 0 bazel/example/{BUILD => BUILD.bazel} | 0 bazel/glog.bzl | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename BUILD => BUILD.bazel (100%) rename bazel/example/{BUILD => BUILD.bazel} (100%) diff --git a/BUILD b/BUILD.bazel similarity index 100% rename from BUILD rename to BUILD.bazel diff --git a/bazel/example/BUILD b/bazel/example/BUILD.bazel similarity index 100% rename from bazel/example/BUILD rename to bazel/example/BUILD.bazel diff --git a/bazel/glog.bzl b/bazel/glog.bzl index 495ea63c7..ba19dcdab 100644 --- a/bazel/glog.bzl +++ b/bazel/glog.bzl @@ -1,4 +1,4 @@ -# Implement a macro glog_library() that the BUILD file can load. +# Implement a macro glog_library() that the BUILD.bazel file can load. # By default, glog is built with gflags support. You can change this behavior # by using glog_library(with_gflags=0)