From c1499f64a8fb2eae2de79ed7195cf248e706efc9 Mon Sep 17 00:00:00 2001 From: Fabian Meumertzheim Date: Mon, 7 Jun 2021 07:46:43 +0200 Subject: [PATCH] Export COPYING By exporting `COPYING`, Bazel projects depending on glog can easily access its license. --- BUILD.bazel | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BUILD.bazel b/BUILD.bazel index 37fb27b..50df620 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,5 +1,7 @@ licenses(['notice']) +exports_files(["COPYING"]) + load(':bazel/glog.bzl', 'glog_library') glog_library()