svn commit: r305275 - stable/10/usr.bin/tar/tests

Ngie Cooper ngie at FreeBSD.org
Fri Sep 2 04:27:03 UTC 2016


Author: ngie
Date: Fri Sep  2 04:27:02 2016
New Revision: 305275
URL: https://svnweb.freebsd.org/changeset/base/305275

Log:
  MFstable/11 r304951:
  
  MFC r303804:
  
  Fix building usr.bin/tar/tests with PIE symbol building enabled by
  removing CFLAGS+= -static
  
  `CFLAGS+= -static` was a carryover from pre-r289195 with
  usr.bin/tar/test/Makefile that should have been specified in LDFLAGS
  There doesn't seem to be an apparent need for static compilation
  of the test binaries.
  
  Obtained-from:	opBSD (418a491eed20d2603ddd1f1bd92c2c0d95094002)

Modified:
  stable/10/usr.bin/tar/tests/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.bin/tar/tests/Makefile
==============================================================================
--- stable/10/usr.bin/tar/tests/Makefile	Fri Sep  2 04:23:26 2016	(r305274)
+++ stable/10/usr.bin/tar/tests/Makefile	Fri Sep  2 04:27:02 2016	(r305275)
@@ -10,7 +10,6 @@ ATF_TESTS_SH+=	functional_test
 BINDIR=		${TESTSDIR}
 
 CFLAGS+=	-DPLATFORM_CONFIG_H=\"${SRCTOP}/lib/libarchive/config_freebsd.h\"
-CFLAGS+=	-static
 CFLAGS+=	-I${SRCTOP}/lib/libarchive -I${.OBJDIR}
 CFLAGS+=	-I${LIBARCHIVEDIR}/tar -I${LIBARCHIVEDIR}/test_utils
 


More information about the svn-src-all mailing list