diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2014-08-12 09:08:53 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-08-12 09:08:53 +0200 |
commit | e3bb4ac791b78ad9ba86f36d13ffd2525c0e9b80 (patch) | |
tree | de6524da6f841b87a322ab8f9622742f89a92d93 | |
parent | a3ff0ad550ba1bfd88e66ac8209446577e889849 (diff) |
fbv: fix typo in pkg-config variable
Reported-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.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 cc1dc7be8..19d5ceaa7 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_PREFER_STATIC_LIB),y) -FBV_CONFIGURE_OPTS += "--libs=$(shell $(PKGg_CONFIG_HOST_BINARY) --libs libpng --static)" +FBV_CONFIGURE_OPTS += "--libs=$(shell $(PKG_CONFIG_HOST_BINARY) --libs libpng --static)" endif else |