mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
Also remove the redundant $(call ...).
This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \
-e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \
-e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
592 B
Makefile
22 lines
592 B
Makefile
#############################################################
|
|
#
|
|
# xfsprogs
|
|
#
|
|
#############################################################
|
|
XFSPROGS_VERSION = 3.1.8
|
|
XFSPROGS_SITE=ftp://oss.sgi.com/projects/xfs/cmd_tars
|
|
|
|
XFSPROGS_DEPENDENCIES = util-linux
|
|
|
|
XFSPROGS_CONF_ENV = ac_cv_header_aio_h=yes ac_cv_lib_rt_lio_listio=yes
|
|
XFSPROGS_CONF_OPT = \
|
|
--enable-lib64=no \
|
|
--enable-gettext=no \
|
|
INSTALL_USER=root \
|
|
INSTALL_GROUP=root
|
|
|
|
XFSPROGS_INSTALL_TARGET_OPT = DIST_ROOT=$(TARGET_DIR) install
|
|
XFSPROGS_UNINSTALL_TARGET_OPT = DIST_ROOT=$(TARGET_DIR) uninstall
|
|
|
|
$(eval $(autotools-package))
|