257a2118be
PLATFORM is an environment variable used by xfsprogs' configure script to determine the platform for which the applications are being built. If we set some incorrect/unsupported value through e.g: export, this will be picked up by xfsprogs' configure script and used as-is and assigned to PKG_PLATFORM, which will lead to build failures. If PLATFORM was empty/unset, then uname on the host building xfsprogs gets used to determine the build platform, which again could be incorrect if we e.g: built xfsprogs on a Darwin system. Since we are obviously building for Linux, let's just make sure we define it that way which solves both issues. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
33 lines
947 B
Makefile
33 lines
947 B
Makefile
################################################################################
|
|
#
|
|
# xfsprogs
|
|
#
|
|
################################################################################
|
|
|
|
XFSPROGS_VERSION = 4.18.0
|
|
XFSPROGS_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/fs/xfs/xfsprogs
|
|
XFSPROGS_SOURCE = xfsprogs-$(XFSPROGS_VERSION).tar.xz
|
|
XFSPROGS_LICENSE = GPL-2.0, GPL-2.0+, LGPL-2.1 (libhandle, few headers)
|
|
XFSPROGS_LICENSE_FILES = LICENSES/GPL-2.0 LICENSES/LGPL-2.1
|
|
|
|
XFSPROGS_DEPENDENCIES = util-linux
|
|
|
|
XFSPROGS_CONF_ENV = ac_cv_header_aio_h=yes ac_cv_lib_rt_lio_listio=yes PLATFORM="linux"
|
|
XFSPROGS_CONF_OPTS = \
|
|
--enable-lib64=no \
|
|
--enable-gettext=no \
|
|
INSTALL_USER=root \
|
|
INSTALL_GROUP=root \
|
|
--enable-static
|
|
|
|
ifeq ($(BR2_PACKAGE_ICU),y)
|
|
XFSPROGS_DEPENDENCIES += icu
|
|
XFSPROGS_CONF_OPTS += --enable-libicu
|
|
else
|
|
XFSPROGS_CONF_OPTS += --disable-libicu
|
|
endif
|
|
|
|
XFSPROGS_INSTALL_TARGET_OPTS = DIST_ROOT=$(TARGET_DIR) install
|
|
|
|
$(eval $(autotools-package))
|