mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
include: don't use extended regex for deps checking
Closes: #18851 Signed-off-by: Nicolas Thill <nico@openwrt.org> SVN-Revision: 44224
This commit is contained in:
parent
9d7651b528
commit
d8263c3025
@ -66,7 +66,7 @@ ifneq ($(PKG_NAME),toolchain)
|
|||||||
XARGS="$(XARGS)"; \
|
XARGS="$(XARGS)"; \
|
||||||
$(SCRIPT_DIR)/gen-dependencies.sh "$$(IDIR_$(1))"; \
|
$(SCRIPT_DIR)/gen-dependencies.sh "$$(IDIR_$(1))"; \
|
||||||
) | while read FILE; do \
|
) | while read FILE; do \
|
||||||
grep -qE "^$$$$FILE$$$$" $(PKG_INFO_DIR)/$(1).provides || \
|
grep -q "^$$$$FILE$$$$" $(PKG_INFO_DIR)/$(1).provides || \
|
||||||
echo "$$$$FILE" >> $(PKG_INFO_DIR)/$(1).missing; \
|
echo "$$$$FILE" >> $(PKG_INFO_DIR)/$(1).missing; \
|
||||||
done; \
|
done; \
|
||||||
if [ -f "$(PKG_INFO_DIR)/$(1).missing" ]; then \
|
if [ -f "$(PKG_INFO_DIR)/$(1).missing" ]; then \
|
||||||
|
Loading…
Reference in New Issue
Block a user