build: fix compile error when a package includes itself in PROVIDES
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
e22cc57593
commit
7c306ae640
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ $(_endef)
|
||||||
fi; \
|
fi; \
|
||||||
done; $(Package/$(1)/extra_provides) \
|
done; $(Package/$(1)/extra_provides) \
|
||||||
) | sort -u > $(PKG_INFO_DIR)/$(1).provides
|
) | sort -u > $(PKG_INFO_DIR)/$(1).provides
|
||||||
$(if $(PROVIDES),@for pkg in $(PROVIDES); do cp $(PKG_INFO_DIR)/$(1).provides $(PKG_INFO_DIR)/$$$$pkg.provides; done)
|
$(if $(PROVIDES),@for pkg in $(filter-out $(1),$(PROVIDES)); do cp $(PKG_INFO_DIR)/$(1).provides $(PKG_INFO_DIR)/$$$$pkg.provides; done)
|
||||||
$(CheckDependencies)
|
$(CheckDependencies)
|
||||||
|
|
||||||
$(RSTRIP) $$(IDIR_$(1))
|
$(RSTRIP) $$(IDIR_$(1))
|
||||||
|
|
Loading…
Reference in a new issue