summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2000-01-17 01:32:39 +0000
committerbde <bde@FreeBSD.org>2000-01-17 01:32:39 +0000
commite35803196d649bc0da5a067e342980daf8858b89 (patch)
tree1403660fdd8ad33ba072abbb929b1d01fa18c082
parentf7cc1d01eecb5ec07178c9914bcee69c010704ec (diff)
downloadFreeBSD-src-e35803196d649bc0da5a067e342980daf8858b89.zip
FreeBSD-src-e35803196d649bc0da5a067e342980daf8858b89.tar.gz
Fixed bitrot in library build order. libmd was not built before
libcrypt and libutil was not built before libpam. The order here is currently unimportant, but ../Makefile should descend here to build everything (which currently doesn't work right) or at least to get the order using `make -V SUBDIR'.
-rw-r--r--lib/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 8c748ff..0380ba1 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -18,15 +18,15 @@
#
# Otherwise, the SUBDIR list should be in alphabetical order.
-SUBDIR= ${_csu} libcom_err ${_libm} libmd ${_libcrypt} \
- libncurses libradius libskey libtacplus \
+SUBDIR= ${_csu} libcom_err libmd ${_libcrypt} ${_libm} \
+ libncurses libradius libskey libtacplus libutil \
${_compat} libalias libatm ${_libbind} libc ${_libc_r} libcalendar \
libcam libcompat libdevstat libdisk libedit libfetch libform \
libftpio libgnumalloc ${_libio} libipsec libipx libkvm libmenu \
${_libncp} \
libnetgraph libopie libpam libpanel libpcap \
libposix1e libresolv librpcsvc libss \
- libstand ${_libtelnet} libutil ${_libvgl} libwrap libxpg4 liby libz
+ libstand ${_libtelnet} ${_libvgl} libwrap libxpg4 liby libz
.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT})
_csu=csu/${MACHINE_ARCH}-${OBJFORMAT}
OpenPOWER on IntegriCloud