From: Thomas De Schampheleire Date: Sun, 26 Jul 2015 18:58:30 +0000 (+0200) Subject: fbv: remove redundant --static flag to pkg-config X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=21f021b07e075246798bff788fa224b0cc2468e9;p=buildroot.git fbv: remove redundant --static flag to pkg-config The pkg-config tool is automatically passing --static when BR2_STATIC_LIBS is set (see package/pkgconf/pkgconf.mk), so no need to pass it explicitly from package .mk files. Signed-off-by: Thomas De Schampheleire Reviewed-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- diff --git a/package/fbv/fbv.mk b/package/fbv/fbv.mk index 5f7dc8c63e..d12b9f455f 100644 --- a/package/fbv/fbv.mk +++ b/package/fbv/fbv.mk @@ -18,7 +18,7 @@ FBV_DEPENDENCIES += libpng # libpng in turn depends on other libraries ifeq ($(BR2_STATIC_LIBS),y) -FBV_CONFIGURE_OPTS += "--libs=`$(PKG_CONFIG_HOST_BINARY) --libs libpng --static`" +FBV_CONFIGURE_OPTS += "--libs=`$(PKG_CONFIG_HOST_BINARY) --libs libpng`" endif else