Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Sep 2014 01:39:21 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r270907 - stable/10/usr.bin/iscsictl
Message-ID:  <201409010139.s811dLPd096684@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Mon Sep  1 01:39:20 2014
New Revision: 270907
URL: http://svnweb.freebsd.org/changeset/base/270907

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

Modified:
  stable/10/usr.bin/iscsictl/Makefile
  stable/10/usr.bin/iscsictl/token.l
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.bin/iscsictl/Makefile
==============================================================================
--- stable/10/usr.bin/iscsictl/Makefile	Sun Aug 31 23:51:09 2014	(r270906)
+++ stable/10/usr.bin/iscsictl/Makefile	Mon Sep  1 01:39:20 2014	(r270907)
@@ -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: stable/10/usr.bin/iscsictl/token.l
==============================================================================
--- stable/10/usr.bin/iscsictl/token.l	Sun Aug 31 23:51:09 2014	(r270906)
+++ stable/10/usr.bin/iscsictl/token.l	Mon Sep  1 01:39:20 2014	(r270907)
@@ -46,6 +46,7 @@ extern int	yylex(void);
 
 %option noinput
 %option nounput
+%option noyywrap
 
 %%
 HeaderDigest		{ return HEADER_DIGEST; }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409010139.s811dLPd096684>