Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Jan 2017 04:48:38 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r310998 - stable/10/lib/libarchive/tests
Message-ID:  <201701010448.v014mcjd093263@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sun Jan  1 04:48:38 2017
New Revision: 310998
URL: https://svnweb.freebsd.org/changeset/base/310998

Log:
  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...)

Modified:
  stable/10/lib/libarchive/tests/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libarchive/tests/Makefile
==============================================================================
--- stable/10/lib/libarchive/tests/Makefile	Sun Jan  1 04:45:06 2017	(r310997)
+++ stable/10/lib/libarchive/tests/Makefile	Sun Jan  1 04:48:38 2017	(r310998)
@@ -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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701010448.v014mcjd093263>