diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1994-02-09 02:29:31 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1994-02-09 02:29:31 +0000 |
commit | 30e3f6b4a01e4168945e5be65ed81afe22e5a19c (patch) | |
tree | a1fe21ec5e341fa15134938036ea75215ec589c8 /gnu/usr.bin/ld/shlib.c | |
parent | d3726af9ccdfb45bdeb31b1ae4f43cd7dfb42c12 (diff) | |
download | FreeBSD-src-30e3f6b4a01e4168945e5be65ed81afe22e5a19c.zip FreeBSD-src-30e3f6b4a01e4168945e5be65ed81afe22e5a19c.tar.gz |
Remove /usr/X386/lib and /usr/local/lib from the default locations,
these are handled by /etc/rc and this was causing errors on a new
install as these places do NOT exsist by default!
Diffstat (limited to 'gnu/usr.bin/ld/shlib.c')
-rw-r--r-- | gnu/usr.bin/ld/shlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/ld/shlib.c b/gnu/usr.bin/ld/shlib.c index dcca01f..0bfc373 100644 --- a/gnu/usr.bin/ld/shlib.c +++ b/gnu/usr.bin/ld/shlib.c @@ -1,5 +1,5 @@ /* - * $Id: shlib.c,v 1.5 1993/12/04 00:53:02 jkh Exp $ + * $Id: shlib.c,v 1.6 1993/12/11 11:58:29 jkh Exp $ */ #include <sys/param.h> @@ -25,7 +25,7 @@ char *strsep(); * Standard directories to search for files specified by -l. */ #ifndef STANDARD_SEARCH_DIRS -#define STANDARD_SEARCH_DIRS "/usr/lib", "/usr/X386/lib", "/usr/local/lib" +#define STANDARD_SEARCH_DIRS "/usr/lib" #endif char *standard_search_dirs[] = { |