diff options
author | ngie <ngie@FreeBSD.org> | 2017-01-01 04:45:06 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-01-01 04:45:06 +0000 |
commit | d00e3e1f2626853b8419e1c8b2634cd58e681d12 (patch) | |
tree | ff8ae1c9e73d1686c4e4977f730399e997c52ae9 /lib/libarchive | |
parent | fe2e31c901ae91b580c4c7a7d825dd5dbf60e39a (diff) | |
download | FreeBSD-src-d00e3e1f2626853b8419e1c8b2634cd58e681d12.zip FreeBSD-src-d00e3e1f2626853b8419e1c8b2634cd58e681d12.tar.gz |
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/libarchive')
-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 5b1bdb9..4bf9434 100644 --- a/lib/libarchive/tests/Makefile +++ b/lib/libarchive/tests/Makefile @@ -10,7 +10,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 |