Skip to content

Commit 1a78b1e

Browse files
committed
Also exclude building docs from inplace-conf target.
This fixes DOMjudge#1453
1 parent cc5861d commit 1a78b1e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile.global

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ include $(TOPDIR)/paths.mk
2424
endif
2525

2626
# We should build docs if it not explicitly disabled and we're not
27-
# running "make maintainer-conf":
27+
# running "make maintainer-conf" or "make inplace-conf":
2828
BUILD_DOCS=no
2929
ifneq ($(DOC_BUILD_ENABLED),no)
3030
ifneq ($(MAKECMDGOALS),maintainer-conf)
31+
ifneq ($(MAKECMDGOALS),inplace-conf)
3132
BUILD_DOCS=yes
3233
endif
3334
endif
35+
endif
3436
export BUILD_DOCS
3537

3638
# Determine revision info:

0 commit comments

Comments
 (0)