include: don't use extended regex for deps checking

Closes: #18851

Signed-off-by: Nicolas Thill <nico@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44224 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Nicolas Thill 2015-01-31 08:15:46 +00:00
parent 65b02ac916
commit 1764dc90c6
1 changed files with 1 additions and 1 deletions

View File

@ -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 \