diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-01-20 04:50:46 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-01-20 04:50:46 +0000 |
commit | eca3ef96a3dc147012d67e2e9fa3242fb98b2499 (patch) | |
tree | 1e536441350b52dfa6ee84df7c9290edf1dfee27 /lib/libkiconv | |
parent | c989c95116f9f0b3e4e71084ad1765fbb13a658b (diff) |
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This simplifies pathing in make/displayed output
MFC after: 3 weeks
Sponsored by: Dell EMC Isilon
Notes
Notes:
svn path=/head/; revision=312500
Diffstat (limited to 'lib/libkiconv')
-rw-r--r-- | lib/libkiconv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libkiconv/Makefile b/lib/libkiconv/Makefile index 5ada7db0b06b..44ec6c0c9d60 100644 --- a/lib/libkiconv/Makefile +++ b/lib/libkiconv/Makefile @@ -17,7 +17,7 @@ MLINKS+= kiconv.3 kiconv_add_xlat16_cspair.3 \ kiconv.3 kiconv_add_xlat16_cspairs.3 \ kiconv.3 kiconv_add_xlat16_table.3 -CFLAGS+= -I${.CURDIR}/../../sys +CFLAGS+= -I${SRCTOP}/sys WARNS?= 1 |