mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Ugh. I didn't know this Makefile was reaching over into the dynamic
linker sources for some of its header files. Add a -I flag to pick up a new directory over there.
This commit is contained in:
parent
d746fb6643
commit
1306c069d2
1 changed files with 4 additions and 2 deletions
|
|
@ -1,11 +1,13 @@
|
|||
#
|
||||
# $Id: Makefile,v 1.6 1998/08/20 21:37:22 jb Exp $
|
||||
# $Id: Makefile,v 1.7 1999/01/09 21:50:56 jdp Exp $
|
||||
#
|
||||
|
||||
RTLDDIR= ${.CURDIR}/../../../libexec/rtld-elf
|
||||
|
||||
SRCS= crt1.c crtbegin.c crtend.c
|
||||
OBJS= crt1.o crtbegin.o crtend.o
|
||||
SOBJS= crtbegin.So crtend.So
|
||||
CFLAGS+= -Wall -Wno-unused -I${.CURDIR}/../../../libexec/rtld-elf
|
||||
CFLAGS+= -Wall -Wno-unused -I${RTLDDIR}/${MACHINE_ARCH} -I${RTLDDIR}
|
||||
NOMAN= true
|
||||
NOPIC= true
|
||||
NOPROFILE= true
|
||||
|
|
|
|||
Loading…
Reference in a new issue