summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2022-11-02 17:19:55 -0400
committerJeffrey Walton <noloader@gmail.com>2022-11-02 17:19:55 -0400
commit3685dd50c6f222a6995bfe842785f5bc37dab162 (patch)
tree7535f07e94c6497ae4f6aa952f6aa03ebeb69c0a /GNUmakefile
parent7c14a84e02be1c163d22d771fd960be467753802 (diff)
downloadcryptopp-git-3685dd50c6f222a6995bfe842785f5bc37dab162.tar.gz
Fix makefile due to grep warnings
Originally, on MinGW, we got a grep warning about a stray \ with #. But removing the \ broke Ubuntu. Undo that change
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index c24b37d5..6d6a5967 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)),)