Back out part of the revision 1.261: "etc" indeed needs to be

last for "distribute" to succeed -- the "make makedb" part of
the etc/Makefile:distribution target should be the last thing
made.
This commit is contained in:
Ruslan Ermilov 2002-04-30 11:46:49 +00:00
parent 581102328a
commit d6e61d989b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=95792

View file

@ -57,9 +57,6 @@ SUBDIR+= lib
.if exists(${.CURDIR}/bin)
SUBDIR+= bin
.endif
.if exists(${.CURDIR}/etc)
SUBDIR+= etc
.endif
.if exists(${.CURDIR}/games) && !defined(NOGAMES)
SUBDIR+= games
.endif
@ -96,6 +93,11 @@ SUBDIR+= usr.bin
SUBDIR+= usr.sbin
.endif
# etc must be last for "distribute" to work
.if exists(${.CURDIR}/etc)
SUBDIR+= etc
.endif
# These are last, since it is nice to at least get the base system
# rebuilt before you do them.
.if defined(LOCAL_DIRS)