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'.
This commit is contained in:
Bruce Evans 2000-01-17 01:32:39 +00:00
parent 466c0416c8
commit 5f34a652e0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56132

View File

@ -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}