summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorbmah <bmah@FreeBSD.org>2007-08-17 14:16:59 +0000
committerbmah <bmah@FreeBSD.org>2007-08-17 14:16:59 +0000
commit962a152daa224db76c2d66cc25168024d8c11f24 (patch)
tree88d30f5206f4293020a54ee491ae0befbf6c6973 /release
parent0f2b50cdc6b184fdd8bc520fa35f28ccd4bb990c (diff)
downloadFreeBSD-src-962a152daa224db76c2d66cc25168024d8c11f24.zip
FreeBSD-src-962a152daa224db76c2d66cc25168024d8c11f24.tar.gz
Fix the order in which we build subdirectories in a "make all" from the
top-level release/doc directory. We were building in share/sgml first, which caused us to autogenerate hardware notes entities in the wrong format (we want to build these via ${RELNOTES_LANG}/hardware/Makefile, in order to get the HWNOTES_MI variable). Approved by: re (kensmith)
Diffstat (limited to 'release')
-rw-r--r--release/doc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/doc/Makefile b/release/doc/Makefile
index 51076c2..787ec93 100644
--- a/release/doc/Makefile
+++ b/release/doc/Makefile
@@ -3,12 +3,12 @@
# The user can override the default language to build and install
# with the RELNOTES_LANG variable.
#
-SUBDIR = share/sgml
.if defined(RELNOTES_LANG) && !empty(RELNOTES_LANG)
SUBDIR+= ${RELNOTES_LANG}
.else
SUBDIR+= en_US.ISO8859-1
.endif
+SUBDIR+= share/sgml
RELN_ROOT?= ${.CURDIR}
OpenPOWER on IntegriCloud