File: flex.patch

package info (click to toggle)
wine 10.0~repack-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 326,452 kB
  • sloc: ansic: 4,155,993; perl: 23,800; yacc: 22,031; javascript: 15,872; makefile: 12,352; pascal: 9,519; objc: 6,923; lex: 5,273; xml: 3,219; python: 2,688; cpp: 1,741; sh: 895; java: 750; asm: 299; cs: 62
file content (21 lines) | stat: -rw-r--r-- 940 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
description: add explicit lex file dependencies to the makefile rules
bug-debian: https://bugs.debian.org/1030536
author: Michael Gilbert <mgilbert@debian.org>

--- a/tools/makedep.c
+++ b/tools/makedep.c
@@ -4343,6 +4343,14 @@ static void output_top_makefile( struct
 
     if (!found) output( "\n%s (everything below this line is auto-generated; DO NOT EDIT!!)\n", separator );
 
+    output( "\n" );
+    output( "tools/wrc/ppl.l: tools/wrc/ppy.tab.c\n" );
+    output( "tools/widl/ppl.l: tools/widl/ppy.tab.c\n" );
+    output( "dlls/d3dcompiler_43/asmshader.l: dlls/d3dcompiler_43/asmshader.tab.c\n" );
+    output( "libs/vkd3d/libs/vkd3d-shader/hlsl.l: libs/vkd3d/libs/vkd3d-shader/hlsl.tab.c\n" );
+    output( "libs/vkd3d/libs/vkd3d-shader/preproc.l: libs/vkd3d/libs/vkd3d-shader/preproc.tab.c\n" );
+    output( "\n" );
+
     if (silent_rules) output_silent_rules();
 
     /* add special targets for makefile and dependencies */