mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
5c12c7bf5a
commit
263d5eee66
1 changed files with 1 additions and 1 deletions
|
|
@ -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}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue