build: when staging unstripped package files, install them to a temporary directory first to work around file overwrite issues in packages like asterisk
SVN-Revision: 17477
This commit is contained in:
parent
eda566c4e9
commit
e6ceb1cace
@ -59,9 +59,11 @@ ifeq ($(DUMP),)
|
||||
$(eval $(call BuildIPKGVariable,$(1),postrm))
|
||||
|
||||
$(STAGING_DIR_ROOT)/stamp/.$(1)_installed: $(STAMP_BUILT)
|
||||
mkdir -p $(STAGING_DIR_ROOT)/stamp
|
||||
$(call Package/$(1)/install,$(STAGING_DIR_ROOT))
|
||||
$(call Package/$(1)/install_lib,$(STAGING_DIR_ROOT))
|
||||
mkdir -p $(STAGING_DIR_ROOT)/stamp $(STAGING_DIR_ROOT)/tmp-$(1)
|
||||
$(call Package/$(1)/install,$(STAGING_DIR_ROOT)/tmp-$(1))
|
||||
$(call Package/$(1)/install_lib,$(STAGING_DIR_ROOT)/tmp-$(1))
|
||||
$(CP) $(STAGING_DIR_ROOT)/tmp-$(1)/* $(STAGING_DIR_ROOT)/
|
||||
rm -rf $(STAGING_DIR_ROOT)/tmp-$(1)
|
||||
touch $$@
|
||||
|
||||
$$(IPKG_$(1)): $(STAGING_DIR)/etc/ipkg.conf $(STAMP_BUILT)
|
||||
|
Loading…
Reference in New Issue
Block a user