[GRASS-SVN] r33087 - grass/trunk/include/Make
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Aug 26 09:02:23 EDT 2008
Author: glynn
Date: 2008-08-26 09:02:22 -0400 (Tue, 26 Aug 2008)
New Revision: 33087
Modified:
grass/trunk/include/Make/Compile.make
grass/trunk/include/Make/Grass.make
Log:
Fix default lex/yacc flags
Modified: grass/trunk/include/Make/Compile.make
===================================================================
--- grass/trunk/include/Make/Compile.make 2008-08-26 09:06:35 UTC (rev 33086)
+++ grass/trunk/include/Make/Compile.make 2008-08-26 13:02:22 UTC (rev 33087)
@@ -44,7 +44,7 @@
# default parser generation rules, include prefix for files/vars
%.yy.c: %.l
- $(LEX) $(LFLAGS) $< > $@
+ $(LEX) $(LFLAGS) -t $< > $@
%.output %.tab.h %.tab.c: %.y
$(YACC) -b$* $(YFLAGS) $<
Modified: grass/trunk/include/Make/Grass.make
===================================================================
--- grass/trunk/include/Make/Grass.make 2008-08-26 09:06:35 UTC (rev 33086)
+++ grass/trunk/include/Make/Grass.make 2008-08-26 13:02:22 UTC (rev 33087)
@@ -74,10 +74,10 @@
endif
# lexical analyzer and default options
-LFLAGS = -d -i -s -t
+LFLAGS = -s
# parser generator and default options
-YFLAGS = -d -v -t
+YFLAGS = -d -v
##################### library names #####################################
More information about the grass-commit
mailing list