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)
This commit is contained in:
Bruce A. Mah 2007-08-17 14:16:59 +00:00
parent 5c12c7bf5a
commit 263d5eee66
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171875

View File

@ -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}