diff options
author | kan <kan@FreeBSD.org> | 2007-05-19 04:55:14 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2007-05-19 04:55:14 +0000 |
commit | 9cb8384f6741f845e431ca6a68d22429f3461d56 (patch) | |
tree | 80af4049a414b6cb3abe4d71835364c524e2f331 /lib/Makefile | |
parent | 3ef9d41401d2f9d9b32d2c476de4aee9b8049188 (diff) | |
download | FreeBSD-src-9cb8384f6741f845e431ca6a68d22429f3461d56.zip FreeBSD-src-9cb8384f6741f845e431ca6a68d22429f3461d56.tar.gz |
Make sure libc is installed before all other shared libraries. Other
libraries might depend on versioned symbols from libc.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Makefile b/lib/Makefile index a0b32ba..1793d56 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -7,6 +7,7 @@ # built are visible: # # csu must be built before all shared libaries for ELF. +# libc must be built before all other shared libraries # libcom_err must be built before libkrb5 and libpam. # libcrypt must be built before libkrb5 and libpam. # libkvm must be built before libdevstat. @@ -24,10 +25,10 @@ # # Otherwise, the SUBDIR list should be in alphabetical order. -SUBDIR= ${_csu} libbsm libcom_err libcrypt libelf libkvm msun libmd ncurses \ - libnetgraph libradius librpcsvc libsbuf libtacplus libutil \ +SUBDIR= ${_csu} libc libbsm libcom_err libcrypt libelf libkvm msun libmd \ + ncurses libnetgraph libradius librpcsvc libsbuf libtacplus libutil \ ${_libypclnt} libalias libarchive ${_libatm} \ - libbegemot ${_libbluetooth} libbsnmp libbz2 libc \ + libbegemot ${_libbluetooth} libbsnmp libbz2 \ libcalendar libcam libcompat libdevinfo libdevstat libdisk \ libedit libexpat libfetch libftpio libgeom ${_libgpib} \ libgssapi libipsec \ |