Don't force -L/usr/lib. This is incorrect because we should not be

looking at the host environment for anything.  This breaks building
-CURRENT on 4.x as well.

Submitted by: kan@
This commit is contained in:
Warner Losh 2003-06-08 03:58:20 +00:00
parent 3889b283ef
commit cedfd4f63f
2 changed files with 2 additions and 2 deletions

View file

@ -6,5 +6,5 @@ SRCS += thr_support.c
SOBJS+= thr_libc.So
thr_libc.So: thr_support.So
${CC} -nostdlib -L/usr/lib -o ${.TARGET} -Wl,-x,-r ${.ALLSRC} -lc_pic
${CC} -nostdlib -o ${.TARGET} -Wl,-x,-r ${.ALLSRC} -lc_pic

View file

@ -6,5 +6,5 @@ SRCS += thr_support.c
SOBJS+= thr_libc.So
thr_libc.So: thr_support.So
${CC} -nostdlib -L/usr/lib -o ${.TARGET} -Wl,-x,-r ${.ALLSRC} -lc_pic
${CC} -nostdlib -o ${.TARGET} -Wl,-x,-r ${.ALLSRC} -lc_pic