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:
parent
581102328a
commit
d6e61d989b
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user