summaryrefslogtreecommitdiffstats
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2006-11-13 05:52:11 +0000
committerru <ru@FreeBSD.org>2006-11-13 05:52:11 +0000
commit27fcddc75c3c4589bd81f969d113b2a6455e4f36 (patch)
treedcb873a293019eb52c2e6b937ca504d545570090 /Makefile.inc1
parent0c00ea16dbadcde1937dfc2bef577820b762e95a (diff)
downloadFreeBSD-src-27fcddc75c3c4589bd81f969d113b2a6455e4f36.zip
FreeBSD-src-27fcddc75c3c4589bd81f969d113b2a6455e4f36.tar.gz
There doesn't seem to be a real reason for include/ to be installed
so early.
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc115
1 files changed, 9 insertions, 6 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 34eaa89..4c45416 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -30,18 +30,17 @@
# entries works correctly. Do it first since it is less likely to
# 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*
# use that new version. And the new (dynamically-linked) /bin/sh
# will expect to find appropriate libraries in /lib and /libexec.
#
-# We must do etc last for install/distribute to work.
-#
-SUBDIR= share/info include lib libexec bin
+SUBDIR= share/info lib libexec
+SUBDIR+=bin
.if ${MK_GAMES} != "no"
SUBDIR+=games
.endif
-SUBDIR+=gnu
+SUBDIR+=gnu include
.if ${MK_KERBEROS} != "no"
SUBDIR+=kerberos5
.endif
@@ -55,7 +54,11 @@ SUBDIR+=secure
.if !defined(NO_SHARE)
SUBDIR+=share
.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
# rebuilt before you do them.
OpenPOWER on IntegriCloud