diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-04-17 21:35:38 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-04-17 21:35:38 +0200 |
commit | a99de14d1f216d81b17bbc31daa0a1e2854ed683 (patch) | |
tree | 6543aede5ff3187a2c02816e998832312617c1c7 | |
parent | 4472bacef2c6ef38d99b9f181d647d64195ae760 (diff) | |
download | buildroot-a99de14d1f216d81b17bbc31daa0a1e2854ed683.tar.gz buildroot-a99de14d1f216d81b17bbc31daa0a1e2854ed683.zip |
gutenprint: add optional libusb support
As the recent build issues have shown, gutenprint has optional libusb
support so ensure it is built after libusb if enabled for consistent
builds.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/gutenprint/gutenprint.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/gutenprint/gutenprint.mk b/package/gutenprint/gutenprint.mk index aebafe2d63..8ee2406abb 100644 --- a/package/gutenprint/gutenprint.mk +++ b/package/gutenprint/gutenprint.mk @@ -16,7 +16,8 @@ GUTENPRINT_AUTORECONF = YES GUTENPRINT_DEPENDENCIES = \ cups host-pkgconf \ - $(if $(BR2_PACKAGE_LIBICONV),libiconv) + $(if $(BR2_PACKAGE_LIBICONV),libiconv) \ + $(if $(BR2_PACKAGE_LIBUSB),libusb) # host-gutenprint is needed to generate XML as part of compilation # the program that generates the xml also links against libgutenprint |