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

SVN-Revision: 24241
This commit is contained in:
Mirko Vogt 2010-12-04 13:44:43 +00:00
parent cd221dca4b
commit 9a18fff28e
1 changed files with 8 additions and 0 deletions

View File

@ -49,6 +49,14 @@ define remove_version_check
fi
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
# ifneq ($(filter libtool,$(PKG_FIXUP)),)
# PKG_BUILD_DEPENDS += libtool