From e1de88c8c74bbfbbfc80a8992bd6bb489bdfd194 Mon Sep 17 00:00:00 2001 From: Yanqin Jin Date: Thu, 24 Jan 2019 11:10:06 -0800 Subject: [PATCH] Escape '.' by adding a '\' to avoid matching any char Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/4912 Differential Revision: D13789449 Pulled By: riversand963 fbshipit-source-id: 0639dae82049b7ac977c8f81851f1c9fdc346705 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 07e8d0fa6..4be322a11 100644 --- a/Makefile +++ b/Makefile @@ -198,7 +198,7 @@ include make_config.mk CLEAN_FILES += make_config.mk missing_make_config_paths := $(shell \ - grep "./\S*\|/\S*" -o $(CURDIR)/make_config.mk | \ + grep "\./\S*\|/\S*" -o $(CURDIR)/make_config.mk | \ while read path; \ do [ -e $$path ] || echo $$path; \ done | sort | uniq)