From 2d4ddd93ce83073f9cd37a416c35e8d120d403dd Mon Sep 17 00:00:00 2001 From: Ayush Ranjan Date: Mon, 24 Apr 2023 12:47:07 -0700 Subject: [PATCH] Print $RUNTIME_ARGS when configuring runsc runtime. Helps with seeing what is actually being installed. PiperOrigin-RevId: 526727666 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c542e867f..b2bce88b8 100644 --- a/Makefile +++ b/Makefile @@ -136,7 +136,7 @@ endif # Configure helpers for below. configure_noreload = \ - $(call header,CONFIGURE $(1) → $(RUNTIME_BIN) $(2)); \ + $(call header,CONFIGURE $(1) → $(RUNTIME_BIN) $(RUNTIME_ARGS) $(2)); \ sudo $(RUNTIME_BIN) install --experimental=true --runtime="$(1)" -- $(RUNTIME_ARGS) --debug-log "$(RUNTIME_LOGS)" $(2) && \ sudo rm -rf "$(RUNTIME_LOG_DIR)" && mkdir -p "$(RUNTIME_LOG_DIR)"