svn commit: r268770 - head/libexec/rtld-elf/tests/libpythagoras

Julio Merino jmmv at FreeBSD.org
Wed Jul 16 16:42:59 UTC 2014


Author: jmmv
Date: Wed Jul 16 16:42:58 2014
New Revision: 268770
URL: http://svnweb.freebsd.org/changeset/base/268770

Log:
  libpythagoras needs libm.
  
  This fixes "make tinderbox" failures on various architectures when
  WITH_TESTS=yes is enabled.  Problem introduced in r267679.

Modified:
  head/libexec/rtld-elf/tests/libpythagoras/Makefile

Modified: head/libexec/rtld-elf/tests/libpythagoras/Makefile
==============================================================================
--- head/libexec/rtld-elf/tests/libpythagoras/Makefile	Wed Jul 16 16:38:25 2014	(r268769)
+++ head/libexec/rtld-elf/tests/libpythagoras/Makefile	Wed Jul 16 16:42:58 2014	(r268770)
@@ -10,4 +10,7 @@ SHLIBDIR=	${TESTSBASE}${TESTSDIR}/libexe
 
 SRCS=		pythagoras.c
 
+DPADD=		${LIBM}
+LDADD=		-lm
+
 .include <bsd.lib.mk>


More information about the svn-src-all mailing list