diff options
author | Danomi Manchego <danomimanchego123@gmail.com> | 2013-11-07 22:10:39 -0500 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-11-10 12:35:31 +0100 |
commit | 69635dbe2ff6d300a31f99b34dc9e6ff9221f583 (patch) | |
tree | db4356c3b0971c7a767f85025080703597e15e8d /package/libqrencode/Config.in | |
parent | 0f401f914669b2d697f6efcfc0d2888a4c118f4d (diff) |
libqrencode: select libpng only when tools are selected
As stated on the libqrencode web site, PNG (or SDL) is only
needed for the test and utility programs; the library itself
has no dependencies.
While we are here, remove spaces in the ifeq clause, to match
the examples in the buildroot manual.
Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libqrencode/Config.in')
-rw-r--r-- | package/libqrencode/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libqrencode/Config.in b/package/libqrencode/Config.in index e8fc1d420..b86662621 100644 --- a/package/libqrencode/Config.in +++ b/package/libqrencode/Config.in @@ -1,6 +1,5 @@ config BR2_PACKAGE_LIBQRENCODE bool "libqrencode" - select BR2_PACKAGE_LIBPNG help libqrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy @@ -14,6 +13,7 @@ if BR2_PACKAGE_LIBQRENCODE config BR2_PACKAGE_LIBQRENCODE_TOOLS bool "libqrencode tools" + select BR2_PACKAGE_LIBPNG help Build command-line tools |