mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-12-10 06:24:40 +01:00
Makefile foreach works only on parsing the Makefile and in this specific
case only works if the package is already extracted and file actually
exist.
On scenario where the package still has to be built, foreach doesn't
find any file causing Host/Install to not install any .m4 file.
To handle this, use a shell for loop that scan files in the
Host/install.
Fixes: c820f097e0 ("tools: gnulib: install .m4 file with gl_ prefix")
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
35 lines
1.2 KiB
Makefile
35 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=gnulib
|
|
PKG_CPE_ID:=cpe:/a:gnu:$(PKG_NAME)
|
|
|
|
PKG_SOURCE_URL=git://git.git.savannah.gnu.org/$(PKG_NAME).git
|
|
PKG_SOURCE_DATE:=2025-07-01
|
|
PKG_SOURCE_VERSION:=a3151d456d6919c9066b54dc6f680452168165cf# # stable-202501
|
|
PKG_MIRROR_HASH:=b695d96e915ecd6c4551436f417cb2c0879aef4ef6318721c8d5cc86cb44ba9d
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
define Host/Configure
|
|
endef
|
|
|
|
# On installing the .m4 files, we add a gl_ prefix to prevent any conflict with
|
|
# automake. It was found that there is currently a conflict for the cond.m4 that
|
|
# is also shipped by automake, making the gnulib one having priority causing
|
|
# problem with finding AM_CONDITIONAL macro.
|
|
define Host/Install
|
|
$(call Host/Uninstall)
|
|
$(INSTALL_DIR) $(1)/share/aclocal
|
|
for m4 in $(HOST_BUILD_DIR)/m4/*.m4; do \
|
|
$(INSTALL_DATA) $(HOST_BUILD_DIR)/m4/$$$$(basename $$$$m4) \
|
|
$(1)/share/aclocal/gl_$$$$(basename $$$$m4); \
|
|
done
|
|
$(CP) $(HOST_BUILD_DIR)/ $(1)/share/gnulib/
|
|
ln -sf ../share/gnulib/gnulib-tool $(STAGING_DIR_HOST)/bin/gnulib-tool
|
|
endef
|
|
|
|
define Host/Uninstall
|
|
rm -rf $(STAGING_DIR_HOST)/bin/gnulib-tool $(STAGING_DIR_HOST)/share/gnulib
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|