We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 574644c commit 5974e74Copy full SHA for 5974e74
make/doc.mk
@@ -50,10 +50,10 @@ endif
50
# ----------------------------------------------------
51
# Man dependencies
52
53
-ERL_FILES := $(wildcard $(APP_SRC_DIR)/*.erl) $(wildcard $(APP_SRC_DIR)/*/*.erl) $(wildcard $(APP_DIR)/preloaded/src/*.erl)
54
-ERL_STRIP := $(strip $(ERL_FILES))
+ERL_FILES0 := $(wildcard $(APP_SRC_DIR)/*.erl) $(wildcard $(APP_SRC_DIR)/*/*.erl) $(wildcard $(APP_DIR)/preloaded/src/*.erl)
+ERL_STRIP := $(strip $(ERL_FILES0))
55
ifneq ($(ERL_STRIP),)
56
- ERL_FILES_WITH_DOC := $(shell grep -L "moduledoc false." $(ERL_FILES))
+ ERL_FILES_WITH_DOC := $(shell grep -L "moduledoc false." $(ERL_FILES0))
57
else
58
ERL_FILES_WITH_DOC :=
59
endif
0 commit comments