svn commit: r310997 - stable/11/lib/libarchive/tests
Ngie Cooper
ngie at FreeBSD.org
Sun Jan 1 04:45:07 UTC 2017
Author: ngie
Date: Sun Jan 1 04:45:06 2017
New Revision: 310997
URL: https://svnweb.freebsd.org/changeset/base/310997
Log:
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...)
Modified:
stable/11/lib/libarchive/tests/Makefile
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/lib/libarchive/tests/Makefile
==============================================================================
--- stable/11/lib/libarchive/tests/Makefile Sun Jan 1 04:13:24 2017 (r310996)
+++ stable/11/lib/libarchive/tests/Makefile Sun Jan 1 04:45:06 2017 (r310997)
@@ -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
More information about the svn-src-stable-11
mailing list