svn commit: r351927 - branches/2014Q2/lang/nbfc/files

Pietro Cerutti gahr at FreeBSD.org
Wed Apr 23 12:13:54 UTC 2014


Author: gahr
Date: Wed Apr 23 12:13:53 2014
New Revision: 351927
URL: http://svnweb.freebsd.org/changeset/ports/351927
QAT: https://qat.redports.org/buildarchive/r351927/

Log:
  MFH: r351924
  
  - Fix build on < 8000000 (yacc doesn't have a -y option)
  
  Reported by:	pkg-fallout
  Approved by:    portmgr

Modified:
  branches/2014Q2/lang/nbfc/files/patch-Makefile
Directory Properties:
  branches/2014Q2/   (props changed)

Modified: branches/2014Q2/lang/nbfc/files/patch-Makefile
==============================================================================
--- branches/2014Q2/lang/nbfc/files/patch-Makefile	Wed Apr 23 12:12:39 2014	(r351926)
+++ branches/2014Q2/lang/nbfc/files/patch-Makefile	Wed Apr 23 12:13:53 2014	(r351927)
@@ -14,7 +14,7 @@
  y.tab.o: bf.y
 -	bison -yd bf.y
 -	gcc -c y.tab.c
-+	${YACC} -yd bf.y
++	${YACC} -d bf.y
 +	${CC} ${CFLAGS} -c y.tab.c
  
  compiler.o: compiler.c


More information about the svn-ports-branches mailing list