yasm/yasm-re2c-nogendate.patch
Thorsten Behrens fa2786a276 Accepting request 283860 from home:elvigia:branches:devel:tools:compiler
- yasm-re2c-nogendate.patch: Do not add date and time 
  to files generated with builtin old/different implementation
 of re2c. [BNC#915937]

OBS-URL: https://build.opensuse.org/request/show/283860
OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/yasm?expand=0&rev=23
2015-02-03 22:29:11 +00:00

16 lines
434 B
Diff

--- yasm-1.3.0.orig/tools/re2c/parser.c
+++ yasm-1.3.0/tools/re2c/parser.c
@@ -232,9 +232,9 @@ void parse(FILE *i, FILE *o){
peektok = NONE;
- fputs("/* Generated by re2c 0.9.1-C on ", o);
- fprintf(o, "%-24s", ctime(&now));
- fputs(" */\n", o); oline+=2;
+ //fputs("/* Generated by re2c 0.9.1-C on ", o);
+ //fprintf(o, "%-24s", ctime(&now));
+ //fputs(" */\n", o); oline+=2;
in = Scanner_new(i);