Skip to content

Commit ea12b3c

Browse files
committed
doc build: use unique Makefile variable to control temp install
1 parent 007c932 commit ea12b3c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

doc/src/sgml/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
# to want to use.
1818
html:
1919

20+
NO_TEMP_INSTALL=yes
21+
2022
subdir = doc/src/sgml
2123
top_builddir = ../../..
2224
include $(top_builddir)/src/Makefile.global

src/Makefile.global.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ check: temp-install
303303

304304
.PHONY: temp-install
305305
temp-install:
306-
ifdef GENERATED_SGML # not needed for SGML 'make check'
306+
ifndef NO_TEMP_INSTALL
307307
ifeq ($(MAKELEVEL),0)
308308
rm -rf '$(abs_top_builddir)'/tmp_install
309309
$(MAKE) -C '$(top_builddir)' DESTDIR='$(abs_top_builddir)'/tmp_install install

0 commit comments

Comments
 (0)