svn commit: r271126 - stable/9/sbin/hastd

Garrett Cooper ngie at FreeBSD.org
Thu Sep 4 20:07:45 UTC 2014


Author: ngie
Date: Thu Sep  4 20:07:44 2014
New Revision: 271126
URL: http://svnweb.freebsd.org/changeset/base/271126

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/9/sbin/hastd/Makefile
Directory Properties:
  stable/9/   (props changed)
  stable/9/sbin/   (props changed)
  stable/9/sbin/hastd/   (props changed)

Modified: stable/9/sbin/hastd/Makefile
==============================================================================
--- stable/9/sbin/hastd/Makefile	Thu Sep  4 20:02:28 2014	(r271125)
+++ stable/9/sbin/hastd/Makefile	Thu Sep  4 20:07:44 2014	(r271126)
@@ -29,8 +29,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-9 mailing list