mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
b4501ca80d
Set ac_cv_mtab_file to /etc/mtab otherwise build will fail if no mtab, mnttab or fstab is found in /etc (on host) Fixes: - http://autobuild.buildroot.org/results/efaf2833d674c7e366c59f367f0b83c7f88546bb Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
34 lines
949 B
Makefile
34 lines
949 B
Makefile
################################################################################
|
|
#
|
|
# lcdproc
|
|
#
|
|
################################################################################
|
|
|
|
LCDPROC_VERSION = 0.5.9
|
|
LCDPROC_SITE = https://github.com/lcdproc/lcdproc/releases/download/v$(LCDPROC_VERSION)
|
|
LCDPROC_LICENSE = GPL-2.0+
|
|
LCDPROC_LICENSE_FILES = COPYING
|
|
LCDPROC_MAKE = $(MAKE1)
|
|
|
|
LCDPROC_CONF_OPTS = --enable-drivers=$(BR2_PACKAGE_LCDPROC_DRIVERS)
|
|
|
|
ifeq ($(BR2_PACKAGE_LCDPROC_MENUS),y)
|
|
LCDPROC_CONF_OPTS += --enable-lcdproc-menus
|
|
endif
|
|
|
|
LCDPROC_DEPENDENCIES = freetype ncurses zlib
|
|
|
|
LCDPROC_CONF_ENV += \
|
|
ac_cv_mtab_file=/etc/mtab \
|
|
ac_cv_path_FT2_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
LCDPROC_DEPENDENCIES += libpng
|
|
LCDPROC_CONF_ENV += ac_cv_path__png_config=$(STAGING_DIR)/usr/bin/libpng-config
|
|
LCDPROC_CONF_OPTS += --enable-libpng
|
|
else
|
|
LCDPROC_CONF_OPTS += --disable-libpng
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|