gst/goom/Makefile.am: Don't compile lex or yacc outputs with warnings, but add other...
[platform/upstream/gstreamer.git] / gst / goom / goomsl_lex.l
index 3079c02..7a7de29 100644 (file)
@@ -35,7 +35,7 @@ ID       [a-zA-Z_@&][a-zA-Z0-9_\.]*
 <C_COMMENT,LINE_COMMENT>.      { /* eat up comment */ }
 
 <INITIAL>"#RST_LINE#"             { currentGoomSL->num_lines = 0; }
-<INITIAL>"#FILE ".*"#"            { currentGoomSL->num_lines = 0; printf("%s\n", yytext); }
+<INITIAL>"#FILE ".*"#"            { currentGoomSL->num_lines = 0; /* printf("%s\n", yytext); */ }
 <INITIAL>"#"[^\n]*                { /* ignore preprocessor lines */ }
 
 <INITIAL>"/*"                { BEGIN C_COMMENT; }