From: Matthew Newton Date: Thu, 30 Jan 2020 12:07:07 +0000 (+0000) Subject: fix find depth arg so make doesn't spin cpu X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72143b5e9bc65d2476e5bbef7633f5e4bff796da;p=thirdparty%2Ffreeradius-server.git fix find depth arg so make doesn't spin cpu --- diff --git a/doc/all.mk b/doc/all.mk index c0f036b21ce..f94da741ca4 100644 --- a/doc/all.mk +++ b/doc/all.mk @@ -78,7 +78,7 @@ DOXYGEN_HTML_DIR = $(DOXYGEN_DIR)/html/ # We also prune the generated doxygen files, as there are too many of them # and it slows down the build. # -BASE_DOC_FILES := $(filter-out doc/doxygen/html/%,$(shell find $$(find doc -depth 1 '!' -type l) -type f)) +BASE_DOC_FILES := $(filter-out doc/doxygen/html/%,$(shell find $$(find doc -maxdepth 1 '!' -type l) -type f)) DOC_FILES := $(filter-out %~ %/all.mk %.gitignore doc/rfc/update.sh doc/developers/%,$(BASE_DOC_FILES)) #