diff options
author | ngie <ngie@FreeBSD.org> | 2017-01-01 04:48:38 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-01-01 04:48:38 +0000 |
commit | e9cf69f43dc55ac43ec436f6ec85919d1bba32da (patch) | |
tree | 89fb6fc23dc4f68c1faf017969703c544ffa3c16 /lib | |
parent | f45ebcc8a9b65acac9ed1b443fbd62762b4d7584 (diff) | |
download | FreeBSD-src-e9cf69f43dc55ac43ec436f6ec85919d1bba32da.zip FreeBSD-src-e9cf69f43dc55ac43ec436f6ec85919d1bba32da.tar.gz |
MFstable/11 r310997:
MFC r310996:
Look for list.h in ${.CURDIR} to unbreak the build with a ports-based copy
of llvm38 on ^/stable/11 (oh, the bugs you find when you set CC,CXX,CPP
manually and it skips the bootstrap stage for the toolchain...)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libarchive/tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libarchive/tests/Makefile b/lib/libarchive/tests/Makefile index f0ede5f..2b7c2a5 100644 --- a/lib/libarchive/tests/Makefile +++ b/lib/libarchive/tests/Makefile @@ -11,7 +11,7 @@ BINDIR= ${TESTSDIR} PROGS+= libarchive_test -CFLAGS+= -I${.CURDIR:H} -I${.OBJDIR} +CFLAGS+= -I${.CURDIR} -I${.CURDIR:H} -I${.OBJDIR} CFLAGS+= -I${LIBARCHIVEDIR}/libarchive -I${LIBARCHIVEDIR}/test_utils CFLAGS+= -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1 |