diff options
author | Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> | 2015-07-26 20:58:30 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-26 23:44:27 +0200 |
commit | 21f021b07e075246798bff788fa224b0cc2468e9 (patch) | |
tree | e414c925e315b720463a3f6abd4b0603b1ecaa03 | |
parent | d4b539564fce4aa8bfbbd9e16c801b8ddae96141 (diff) |
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 <thomas.de.schampheleire@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/fbv/fbv.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/fbv/fbv.mk b/package/fbv/fbv.mk index 5f7dc8c63..d12b9f455 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 |