svn commit: r270432 - head/usr.bin/iscsictl

Garrett Cooper ngie at FreeBSD.org
Sat Aug 23 20:42:38 UTC 2014


Author: ngie
Date: Sat Aug 23 20:42:37 2014
New Revision: 270432
URL: http://svnweb.freebsd.org/changeset/base/270432

Log:
  Fix "make checkdpadd" in usr.bin/iscsictl by removing -lfl dependency
  
  Approved by: rpaulo (mentor)
  MFC after: 1 week

Modified:
  head/usr.bin/iscsictl/Makefile
  head/usr.bin/iscsictl/token.l

Modified: head/usr.bin/iscsictl/Makefile
==============================================================================
--- head/usr.bin/iscsictl/Makefile	Sat Aug 23 20:35:33 2014	(r270431)
+++ head/usr.bin/iscsictl/Makefile	Sat Aug 23 20:42:37 2014	(r270432)
@@ -7,7 +7,7 @@ CFLAGS+=	-I${.CURDIR}/../../sys/dev/iscs
 MAN=		iscsictl.8
 
 DPADD=		${LIBCAM} ${LIBUTIL} 
-LDADD=		-lcam -lfl -lutil
+LDADD=		-lcam -lutil
 
 YFLAGS+=	-v
 LFLAGS+=	-i

Modified: head/usr.bin/iscsictl/token.l
==============================================================================
--- head/usr.bin/iscsictl/token.l	Sat Aug 23 20:35:33 2014	(r270431)
+++ head/usr.bin/iscsictl/token.l	Sat Aug 23 20:42:37 2014	(r270432)
@@ -46,6 +46,7 @@ extern int	yylex(void);
 
 %option noinput
 %option nounput
+%option noyywrap
 
 %%
 HeaderDigest		{ return HEADER_DIGEST; }


More information about the svn-src-all mailing list