From 573316e3c2ddd91fd0f36d2251f9660b4f98bebc Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 8 Jan 2023 23:48:37 -0700 Subject: binstruct: Make the cache thread-safe --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b3bcdd8..c16dfd7 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ go-mod-tidy: go-mod-tidy: go-mod-tidy/main go-mod-tidy/main: rm -f go.sum - go mod tidy -go $(goversion) -compat $(goversion) + go mod tidy -go 1.20 -compat $(goversion) .PHONY: go-mod-tidy/main go-mod-tidy: $(patsubst tools/src/%/go.mod,go-mod-tidy/tools/%,$(wildcard tools/src/*/go.mod)) -- cgit v1.2.3-2-g168b From 1d7f5446dc37687f078269af3c63af7d7ebbfab4 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 9 Jan 2023 14:04:09 -0700 Subject: containers: Add my own ARC implementation I really want an OnEvict callback. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c16dfd7..07cb57d 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,7 @@ lint: tools/bin/golangci-lint generate/files = LICENSE.gpl-2.0.txt generate/files += LICENSE.gpl-3.0.txt generate/files += LICENSE.apache-2.0.txt +generate/files += LICENSE.mpl-2.0.txt generate: generate-clean $(MAKE) -C lib/btrfs @@ -38,6 +39,8 @@ LICENSE.gpl-3.0.txt: curl https://www.gnu.org/licenses/gpl-3.0.txt > $@ LICENSE.apache-2.0.txt: curl https://apache.org/licenses/LICENSE-2.0.txt > $@ +LICENSE.mpl-2.0.txt: + curl https://www.mozilla.org/media/MPL/2.0/index.48a3fe23ed13.txt > $@ # tools -- cgit v1.2.3-2-g168b