svn commit: r477304 - head/net/dhcp6/files
Craig Leres
leres at FreeBSD.org
Thu Aug 16 01:06:57 UTC 2018
Author: leres
Date: Thu Aug 16 01:06:56 2018
New Revision: 477304
URL: https://svnweb.freebsd.org/changeset/ports/477304
Log:
Fix Makefile dependency so that cfparse.c and y.tab.h exist
before cftoken.c is generated or compiled.
PR: 218859
Reviewed by: ler (mentor)
Approved by: maintainer timeout (68 weeks), ler (mentor)
Differential Revision: https://reviews.freebsd.org/D16738
Added:
head/net/dhcp6/files/patch-Makefile.in (contents, props changed)
Added: head/net/dhcp6/files/patch-Makefile.in
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/dhcp6/files/patch-Makefile.in Thu Aug 16 01:06:56 2018 (r477304)
@@ -0,0 +1,11 @@
+--- Makefile.in.orig 2017-02-28 19:06:15 UTC
++++ Makefile.in
+@@ -77,7 +77,7 @@ cfparse.c y.tab.h: cfparse.y
+ @YACC@ -d cfparse.y
+ mv y.tab.c cfparse.c
+
+-cftoken.c: cftoken.l y.tab.h
++cftoken.c: cftoken.l cfparse.c
+ @LEX@ cftoken.l
+ mv lex.yy.c $@
+
More information about the svn-ports-all
mailing list