From 263d5eee66be7cfbd73523e746e29238e626e618 Mon Sep 17 00:00:00 2001 From: "Bruce A. Mah" Date: Fri, 17 Aug 2007 14:16:59 +0000 Subject: [PATCH] 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) --- release/doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/doc/Makefile b/release/doc/Makefile index 51076c21309a..787ec93ecbdf 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}