svn commit: r196911 - head/usr.bin/tar

Pawel Jakub Dawidek pjd at FreeBSD.org
Mon Sep 7 06:37:45 UTC 2009


Author: pjd
Date: Mon Sep  7 06:37:44 2009
New Revision: 196911
URL: http://svn.freebsd.org/changeset/base/196911

Log:
  Make sure to use up-to-date libarchive header files from source tree when
  compiling tar and not the ones from /usr/include/.
  
  Reviewed by:	kientzle
  Approved by:	kientzle

Modified:
  head/usr.bin/tar/Makefile

Modified: head/usr.bin/tar/Makefile
==============================================================================
--- head/usr.bin/tar/Makefile	Mon Sep  7 00:49:00 2009	(r196910)
+++ head/usr.bin/tar/Makefile	Mon Sep  7 06:37:44 2009	(r196911)
@@ -12,7 +12,7 @@ LDADD+= -lcrypto
 .endif
 CFLAGS+=	-DBSDTAR_VERSION_STRING=\"${BSDTAR_VERSION_STRING}\"
 CFLAGS+=	-DPLATFORM_CONFIG_H=\"config_freebsd.h\"
-CFLAGS+=	-I${.CURDIR}
+CFLAGS+=	-I${.CURDIR} -I${.CURDIR}/../../lib/libarchive
 SYMLINKS=	bsdtar ${BINDIR}/tar
 MLINKS=	bsdtar.1 tar.1
 DEBUG_FLAGS=-g


More information about the svn-src-all mailing list