Author: nico Date: 2015-01-31 09:15:46 +0100 (Sat, 31 Jan 2015) New Revision: 44224
Modified: trunk/include/package-ipkg.mk Log: include: don't use extended regex for deps checking Closes: #18851 Signed-off-by: Nicolas Thill <[email protected]> Modified: trunk/include/package-ipkg.mk =================================================================== --- trunk/include/package-ipkg.mk 2015-01-30 10:04:23 UTC (rev 44223) +++ trunk/include/package-ipkg.mk 2015-01-31 08:15:46 UTC (rev 44224) @@ -66,7 +66,7 @@ XARGS="$(XARGS)"; \ $(SCRIPT_DIR)/gen-dependencies.sh "$$(IDIR_$(1))"; \ ) | 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; \ done; \ if [ -f "$(PKG_INFO_DIR)/$(1).missing" ]; then \ _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
