mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-17 15:04:42 +02:00
[trunk/include/autotools.mk] ensure accidentally installed *.la-files (into $STAGING_DIR) are going to be removed afterwards - this actually should be done within respective package-Makefiles itself, however they need to stay compatible with libtool v1.5.x which is used in backfire, since it (may) require those files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24241 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
eacbaf7ca0
commit
d81f7fdb94
@ -49,6 +49,14 @@ define remove_version_check
|
|||||||
fi
|
fi
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
# delete *.la-files from staging_dir - we can not yet remove respective lines within all package
|
||||||
|
# Makefiles, since backfire still uses libtool v1.5.x which (may) require those files
|
||||||
|
define libtool_remove_files
|
||||||
|
find $(1) -name '*.la' | $(XARGS) rm -f
|
||||||
|
endef
|
||||||
|
|
||||||
|
Hooks/InstallDev/Post += libtool_remove_files
|
||||||
|
|
||||||
# XXX the libtool fixups got deactivated in the course of switching to libtool2 in trunk XXX
|
# XXX the libtool fixups got deactivated in the course of switching to libtool2 in trunk XXX
|
||||||
# ifneq ($(filter libtool,$(PKG_FIXUP)),)
|
# ifneq ($(filter libtool,$(PKG_FIXUP)),)
|
||||||
# PKG_BUILD_DEPENDS += libtool
|
# PKG_BUILD_DEPENDS += libtool
|
||||||
|
Loading…
x
Reference in New Issue
Block a user