diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-11 06:31:26 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-11 06:31:26 +0000 |
commit | 6be22aee9df34905826b199ac88bb040eb1e8439 (patch) | |
tree | cc5365696fb61b1a60a30c82662e6676135cd9f1 /lib | |
parent | 111661de482eeada4faea3eb715939145a3674fe (diff) | |
download | FreeBSD-src-6be22aee9df34905826b199ac88bb040eb1e8439.zip FreeBSD-src-6be22aee9df34905826b199ac88bb040eb1e8439.tar.gz |
MFC r312470:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libutil/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libutil/Makefile b/lib/libutil/Makefile index 4e10729..11ebb3f 100644 --- a/lib/libutil/Makefile +++ b/lib/libutil/Makefile @@ -24,7 +24,7 @@ CFLAGS+= -DLIBC_SCCS CFLAGS+= -DINET6 .endif -CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../libc/gen/ +CFLAGS+= -I${.CURDIR} -I${SRCTOP}/lib/libc/gen/ MAN+= expand_number.3 flopen.3 fparseln.3 hexdump.3 \ humanize_number.3 kinfo_getallproc.3 kinfo_getfile.3 \ |