diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-25 01:20:51 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-25 01:20:51 +0000 |
commit | cebef70d9071eac41765ecc322cd863368fc737f (patch) | |
tree | 3ffc70cdc8ff1f0f7cd62cd8c11326f74523c052 /ldso/util/ldconfig.c | |
parent | 1af9efbcb57a0bbfa47afe4ea156f51df3d83be0 (diff) |
One last structural change. Install header files to INSTALLDIR/usr/include
so we now parallel the behavior of the standard tools.
Also make sure we check INSTALLDIR/lib and INSTALLDIR/usr/lib for libraries.
-Erik
Diffstat (limited to 'ldso/util/ldconfig.c')
-rw-r--r-- | ldso/util/ldconfig.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ldso/util/ldconfig.c b/ldso/util/ldconfig.c index b7f976890..5c041f8b8 100644 --- a/ldso/util/ldconfig.c +++ b/ldso/util/ldconfig.c @@ -684,13 +684,10 @@ int main(int argc, char **argv) free(extpath); } -#ifdef UCLIBC_DEVEL + scan_dir(UCLIBC_INSTALL_DIR"/usr/lib"); scan_dir(UCLIBC_INSTALL_DIR"/lib"); -#else - /* everybody needs these, don't they? */ scan_dir("/usr/lib"); scan_dir("/lib"); -#endif } if (!nocache) |