From: Fabrice Fontaine Date: Wed, 21 Dec 2016 18:50:46 +0000 (+0100) Subject: runc: pass -extldflags '-static' in correct variable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b97e3c94a9798bbd7eb08f5bd1adb0417cde1fd1;p=buildroot.git runc: pass -extldflags '-static' in correct variable commit 9101ce5800 (runc: pass -extldflags '-static' on when BR2_STATIC_LIBS=y) contained a small copy/paste error, FLANNEL_GLDFLAGS was used instead of RUNC_GLDFLAGS. [Peter: refer to exact commit] Signed-off-by: Fabrice Fontaine Signed-off-by: Peter Korsgaard --- diff --git a/package/runc/runc.mk b/package/runc/runc.mk index ef151ede25..661872c962 100644 --- a/package/runc/runc.mk +++ b/package/runc/runc.mk @@ -22,7 +22,7 @@ RUNC_GLDFLAGS = \ -X main.gitCommit=$(RUNC_VERSION) ifeq ($(BR2_STATIC_LIBS),y) -FLANNEL_GLDFLAGS += -extldflags '-static' +RUNC_GLDFLAGS += -extldflags '-static' endif RUNC_GOTAGS = cgo static_build