mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
3889b283ef
commit
cedfd4f63f
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue