fa2786a276
- 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
16 lines
434 B
Diff
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);
|
|
|