diff options
author | Romain Naour <romain.naour@gmail.com> | 2017-06-11 15:13:16 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-06-11 17:48:13 +0200 |
commit | e217efeeb2e5451b15a075a69e3321ad94ba52f3 (patch) | |
tree | 5e88b0f624b67ce6abad4af805fd47e23e4f1829 | |
parent | 09f1b8011b580ae4ce21b6f0e716d69b86efa26a (diff) | |
download | buildroot-e217efeeb2e5451b15a075a69e3321ad94ba52f3.tar.gz buildroot-e217efeeb2e5451b15a075a69e3321ad94ba52f3.zip |
package/lcdproc: override freetype-config path
freetype-config from the host system may be used when installed.
Make sure that the one from STAGING_DIR is used.
checking if freetype support has been enabled... yes
checking for freetype-config... /usr/bin/freetype-config
checking for FreeType -- version >= 7.0.1... cross compiling; assuming OK... yes
Fixes:
http://autobuild.buildroot.net/results/c7c/c7c52cd56b985fd73434d5997e9a6ab3f7d7e71e
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/lcdproc/lcdproc.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/lcdproc/lcdproc.mk b/package/lcdproc/lcdproc.mk index c6476eb745..5196368a78 100644 --- a/package/lcdproc/lcdproc.mk +++ b/package/lcdproc/lcdproc.mk @@ -18,6 +18,8 @@ endif LCDPROC_DEPENDENCIES = freetype ncurses zlib +LCDPROC_CONF_ENV += ac_cv_path_FT2_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config + ifeq ($(BR2_PACKAGE_LIBPNG),y) LCDPROC_DEPENDENCIES += libpng LCDPROC_CONF_OPTS += --enable-libpng |