summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2022-11-02 17:05:41 -0400
committerJeffrey Walton <noloader@gmail.com>2022-11-02 17:05:41 -0400
commit7c14a84e02be1c163d22d771fd960be467753802 (patch)
treed31e5ec997c57e56505ab59bc36ea998103cb6c9 /GNUmakefile
parenta7b698f2cff6af5cf95765884b1a88a146b1c724 (diff)
downloadcryptopp-git-7c14a84e02be1c163d22d771fd960be467753802.tar.gz
Fix grep warning about stray \
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 7cf59c95..c24b37d5 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1373,7 +1373,7 @@ sources: adhoc.cpp
DOCUMENT_DIRECTORY := ref$(LIB_VER)
# Directory Doxygen uses (specified in Doygen config file)
ifeq ($(wildcard Doxyfile),Doxyfile)
-DOXYGEN_DIRECTORY := $(strip $(shell $(GREP) "OUTPUT_DIRECTORY" Doxyfile | $(GREP) -v "\#" | cut -d "=" -f 2))
+DOXYGEN_DIRECTORY := $(strip $(shell $(GREP) "OUTPUT_DIRECTORY" Doxyfile | $(GREP) -v "#" | cut -d "=" -f 2))
endif
# Default directory (in case its missing in the config file)
ifeq ($(strip $(DOXYGEN_DIRECTORY)),)