svn commit: r270911 - stable/10/sbin/hastd

Garrett Cooper ngie at FreeBSD.org
Mon Sep 1 03:22:48 UTC 2014


Author: ngie
Date: Mon Sep  1 03:22:47 2014
New Revision: 270911
URL: http://svnweb.freebsd.org/changeset/base/270911

Log:
  MFC r270433:
  
    Garbage collect libl dependency
  
    The application links and runs without libl
  
    Approved by: rpaulo (mentor)
    Phabric: D673
    Submitted by: trociny

Modified:
  stable/10/sbin/hastd/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sbin/hastd/Makefile
==============================================================================
--- stable/10/sbin/hastd/Makefile	Mon Sep  1 03:20:10 2014	(r270910)
+++ stable/10/sbin/hastd/Makefile	Mon Sep  1 03:22:47 2014	(r270911)
@@ -30,8 +30,8 @@ CFLAGS+=-DINET
 CFLAGS+=-DINET6
 .endif
 
-DPADD=	${LIBGEOM} ${LIBBSDXML} ${LIBSBUF} ${LIBL} ${LIBPTHREAD} ${LIBUTIL}
-LDADD=	-lgeom -lbsdxml -lsbuf -ll -lpthread -lutil
+DPADD=	${LIBGEOM} ${LIBBSDXML} ${LIBSBUF} ${LIBPTHREAD} ${LIBUTIL}
+LDADD=	-lgeom -lbsdxml -lsbuf -lpthread -lutil
 .if ${MK_OPENSSL} != "no"
 DPADD+=	${LIBCRYPTO}
 LDADD+=	-lcrypto


More information about the svn-src-stable-10 mailing list