svn commit: r270144 - head/lib/libcrypt/tests

Garrett Cooper ngie at FreeBSD.org
Mon Aug 18 17:35:40 UTC 2014


Author: ngie
Date: Mon Aug 18 17:35:39 2014
New Revision: 270144
URL: http://svnweb.freebsd.org/changeset/base/270144

Log:
  Add LIBCRYPT to DPADD, remove LDFLAGS from LDADD, and sort the Makefile variables
  
  This fixes "make checkdpadd"
  
  Phabric: D620
  Approved by: jmmv (mentor)
  PR: 192729
  MFC after: 5 days

Modified:
  head/lib/libcrypt/tests/Makefile

Modified: head/lib/libcrypt/tests/Makefile
==============================================================================
--- head/lib/libcrypt/tests/Makefile	Mon Aug 18 17:35:33 2014	(r270143)
+++ head/lib/libcrypt/tests/Makefile	Mon Aug 18 17:35:39 2014	(r270144)
@@ -7,6 +7,7 @@ TESTSDIR= ${TESTSBASE}/lib/libcrypt
 ATF_TESTS_C= crypt_tests
 
 CFLAGS+= -I${.CURDIR:H}
-LDADD+= -L${.OBJDIR:H} -lcrypt
+DPADD+=	${LIBCRYPT}
+LDADD+= -lcrypt
 
 .include <bsd.test.mk>


More information about the svn-src-all mailing list