diff options
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/package/Makefile b/package/Makefile index 87dfe68e06..f5a7395643 100644 --- a/package/Makefile +++ b/package/Makefile @@ -49,11 +49,7 @@ $(curdir)/install: $(TMP_DIR)/.build $(curdir)/system/opkg/host/install rm -rf $(TARGET_DIR) [ -d $(TARGET_DIR)/tmp ] || mkdir -p $(TARGET_DIR)/tmp $(call opkg,$(TARGET_DIR)) install \ - $(wildcard \ - $(foreach dir,$(PACKAGE_SUBDIRS), \ - $(foreach pkg, \ - $(shell cat $(PACKAGE_INSTALL_FILES) 2>/dev/null), \ - $(dir)/$(pkg)_*.ipk))) + $(call opkg_package_files,$(shell cat $(PACKAGE_INSTALL_FILES) 2>/dev/null)) @for file in $(PACKAGE_INSTALL_FILES); do \ [ -s $$file.flags ] || continue; \ for flag in `cat $$file.flags`; do \ |