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 be07821 commit c922ad2Copy full SHA for c922ad2
system/doc/top/Makefile
@@ -28,7 +28,10 @@ include $(ERL_TOP)/make/$(TARGET)/otp.mk
28
# ----------------------------------------------------
29
APPLICATION=Erlang/OTP
30
VSN=$(shell cat $(ERL_TOP)/OTP_VERSION)
31
-SKIP_APPLICATIONS=$(shell cat $(ERL_TOP)/lib/SKIP-APPLICATIONS)
+
32
+SKIP_FILE := $(wildcard $(ERL_TOP)/lib/SKIP-APPLICATIONS)
33
+SKIP_APPLICATIONS := $(if $(SKIP_FILE),$(shell cat $(SKIP_FILE)),)
34
35
APP_DIR=../../../lib/erl_interface
36
INDEX_DIR=.
37
HTMLDIR=../../../doc
0 commit comments