From 024680049fb13e8aa98f946d4baf16f440262669 Mon Sep 17 00:00:00 2001 From: Pradipta Banerjee Date: Fri, 13 Jan 2023 09:40:07 +0530 Subject: [PATCH] podvm: Allow setting of LIBC dynamically Fixes:#519 Signed-off-by: Pradipta Banerjee --- podvm/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podvm/Makefile.inc b/podvm/Makefile.inc index cb10bab38..68d3e3544 100644 --- a/podvm/Makefile.inc +++ b/podvm/Makefile.inc @@ -16,7 +16,7 @@ IMAGE_PREFIX := podvm HOST_ARCH := $(shell uname -m) ARCH ?= $(HOST_ARCH) DEB_ARCH := $(subst x86_64,amd64,$(ARCH)) -LIBC := $(if $(findstring s390x,$(ARCH)),gnu,musl) +LIBC ?= $(if $(findstring s390x,$(ARCH)),gnu,musl) RUST_TARGET := $(ARCH)-unknown-linux-$(LIBC) ifneq ($(HOST_ARCH),$(ARCH))