From 015e7ee460e69cb8459edda55484ba05a3e639df Mon Sep 17 00:00:00 2001 From: Adam Novak Date: Thu, 3 Oct 2024 11:33:49 -0400 Subject: [PATCH] Pass $DEBIAN_FRONTEND through make get-deps This lets you stop `make get-deps` from demanding your timezone. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 67c1e556f0..e94642c0ca 100644 --- a/Makefile +++ b/Makefile @@ -521,7 +521,7 @@ static-docker: static scripts/* # We have system-level deps to install # We want the One True Place for them to be in the Dockerfile. get-deps: - sudo apt-get install -qq -y --no-upgrade $(shell cat Dockerfile | sed -n '/^###DEPS_BEGIN###/,$${p;/^###DEPS_END###/q}' | grep -v '^ *#' | grep -v "^RUN" | tr '\n' ' ' | tr -d '\\') + sudo DEBIAN_FRONTEND=$(DEBIAN_FRONTEND) apt-get install -qq -y --no-upgrade $(shell cat Dockerfile | sed -n '/^###DEPS_BEGIN###/,$${p;/^###DEPS_END###/q}' | grep -v '^ *#' | grep -v "^RUN" | tr '\n' ' ' | tr -d '\\') # And we have submodule deps to build deps: $(DEPS)