|
@@ -134,6 +134,21 @@ endef
|
|
|
GLOBAL_INSTRUMENTATION_HOOKS += step_user
|
|
|
endif
|
|
|
|
|
|
+#######################################
|
|
|
+# Helper functions
|
|
|
+
|
|
|
+# Make sure .la files only reference the current per-package
|
|
|
+# directory.
|
|
|
+
|
|
|
+# $1: package name (lower case)
|
|
|
+# $2: staging directory of the package
|
|
|
+ifeq ($(BR2_PER_PACKAGE_DIRECTORIES),y)
|
|
|
+define fixup-libtool-files
|
|
|
+ $(Q)find $(2)/usr/lib* -name "*.la" | xargs --no-run-if-empty \
|
|
|
+ $(SED) "s:$(PER_PACKAGE_DIR)/[^/]+/:$(PER_PACKAGE_DIR)/$(1)/:g"
|
|
|
+endef
|
|
|
+endif
|
|
|
+
|
|
|
################################################################################
|
|
|
# Implicit targets -- produce a stamp file for each step of a package build
|
|
|
################################################################################
|
|
@@ -230,6 +245,7 @@ $(BUILD_DIR)/%/.stamp_configured:
|
|
|
@$(call step_start,configure)
|
|
|
@$(call MESSAGE,"Configuring")
|
|
|
$(call prepare-per-package-directory,$($(PKG)_FINAL_DEPENDENCIES))
|
|
|
+ $(call fixup-libtool-files,$(NAME),$(STAGING_DIR))
|
|
|
$(foreach hook,$($(PKG)_PRE_CONFIGURE_HOOKS),$(call $(hook))$(sep))
|
|
|
$($(PKG)_CONFIGURE_CMDS)
|
|
|
$(foreach hook,$($(PKG)_POST_CONFIGURE_HOOKS),$(call $(hook))$(sep))
|
|
@@ -919,6 +935,7 @@ $$($(2)_TARGET_INSTALL_IMAGES): PKG=$(2)
|
|
|
$$($(2)_TARGET_INSTALL_HOST): PKG=$(2)
|
|
|
$$($(2)_TARGET_BUILD): PKG=$(2)
|
|
|
$$($(2)_TARGET_CONFIGURE): PKG=$(2)
|
|
|
+$$($(2)_TARGET_CONFIGURE): NAME=$(1)
|
|
|
$$($(2)_TARGET_RSYNC): SRCDIR=$$($(2)_OVERRIDE_SRCDIR)
|
|
|
$$($(2)_TARGET_RSYNC): PKG=$(2)
|
|
|
$$($(2)_TARGET_PATCH): PKG=$(2)
|