12345678910111213141516171819202122 |
- From af680b488e33d0921eb55f333bdccf14928ed850 Mon Sep 17 00:00:00 2001
- From: garypang13 <[email protected]>
- Date: Wed, 28 Oct 2020 19:11:14 +0800
- Subject: [PATCH] Update Makefile
- ---
- package/Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- diff --git a/package/Makefile b/package/Makefile
- index ec503dc5273d..99b51f70f2fb 100644
- --- a/package/Makefile
- +++ b/package/Makefile
- @@ -66,7 +66,7 @@ $(curdir)/install: $(TMP_DIR)/.build $(curdir)/merge $(if $(CONFIG_TARGET_PER_DE
- - find $(STAGING_DIR_ROOT) -type d | $(XARGS) chmod 0755
- rm -rf $(TARGET_DIR) $(TARGET_DIR_ORIG)
- mkdir -p $(TARGET_DIR)/tmp
- - $(call opkg,$(TARGET_DIR)) install \
- + $(call opkg,$(TARGET_DIR)) install --force-overwrite \
- $(call opkg_package_files,$(foreach pkg,$(shell cat $(PACKAGE_INSTALL_FILES) 2>/dev/null),$(pkg)$(call GetABISuffix,$(pkg))))
- @for file in $(PACKAGE_INSTALL_FILES); do \
- [ -s $$file.flags ] || continue; \
|