mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon
This commit is contained in:
parent
5695441bc7
commit
f623ad832c
1 changed files with 3 additions and 3 deletions
|
|
@ -6,7 +6,7 @@
|
|||
# bsd.lib.mk doesn't have an easy way to express that.
|
||||
MK_PROFILE?=no
|
||||
.include <src.opts.mk>
|
||||
NO_PIC=
|
||||
NO_PIC=
|
||||
# -fpic on some platforms, -fPIC on others.
|
||||
CFLAGS+=${PICFLAG} -DPIC -fvisibility=hidden
|
||||
|
||||
|
|
@ -18,9 +18,9 @@ LIBC_NONSHARED_SRCS=
|
|||
SRCS= __stub.c
|
||||
|
||||
.if ${MK_ICONV} == "yes"
|
||||
.PATH: ${.CURDIR}/../libc/iconv
|
||||
.PATH: ${SRCTOP}/lib/libc/iconv
|
||||
.include "Makefile.iconv"
|
||||
CFLAGS+=-I${.CURDIR}/../libc/iconv
|
||||
CFLAGS+=-I${SRCTOP}/lib/libc/iconv
|
||||
.endif
|
||||
|
||||
SRCS+= ${LIBC_NONSHARED_SRCS}
|
||||
|
|
|
|||
Loading…
Reference in a new issue