There doesn't seem to be a real reason for include/ to be installed

so early.
This commit is contained in:
Ruslan Ermilov 2006-11-13 05:52:11 +00:00
parent 2f6a774be4
commit 87b8c12df5

View File

@ -30,18 +30,17 @@
# entries works correctly. Do it first since it is less likely to # entries works correctly. Do it first since it is less likely to
# grow dependencies on include and lib than vice versa. # grow dependencies on include and lib than vice versa.
# #
# We must do lib and libexec before bin, because if installworld # We must do lib/ and libexec/ before bin/, because if installworld
# installs a new /bin/sh, the 'make' command will *immediately* # installs a new /bin/sh, the 'make' command will *immediately*
# use that new version. And the new (dynamically-linked) /bin/sh # use that new version. And the new (dynamically-linked) /bin/sh
# will expect to find appropriate libraries in /lib and /libexec. # will expect to find appropriate libraries in /lib and /libexec.
# #
# We must do etc last for install/distribute to work. SUBDIR= share/info lib libexec
# SUBDIR+=bin
SUBDIR= share/info include lib libexec bin
.if ${MK_GAMES} != "no" .if ${MK_GAMES} != "no"
SUBDIR+=games SUBDIR+=games
.endif .endif
SUBDIR+=gnu SUBDIR+=gnu include
.if ${MK_KERBEROS} != "no" .if ${MK_KERBEROS} != "no"
SUBDIR+=kerberos5 SUBDIR+=kerberos5
.endif .endif
@ -55,7 +54,11 @@ SUBDIR+=secure
.if !defined(NO_SHARE) .if !defined(NO_SHARE)
SUBDIR+=share SUBDIR+=share
.endif .endif
SUBDIR+=sys usr.bin usr.sbin etc SUBDIR+=sys usr.bin usr.sbin
#
# We must do etc/ last for install/distribute to work.
#
SUBDIR+=etc
# These are last, since it is nice to at least get the base system # These are last, since it is nice to at least get the base system
# rebuilt before you do them. # rebuilt before you do them.