summaryrefslogtreecommitdiff
blob: 7c8590a299193cd846c18fa32272654a57813f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
https://bugs.gentoo.org/646880

--- a/scripts/MakeHeader.py
+++ b/scripts/MakeHeader.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-import os, sys, string
+import os, sys, string, io
 try:
    from cStringIO import StringIO
 except ImportError:
@@ -16,7 +16,7 @@ SKIPONE=4
 state = ANY
 static = 0
 
-file = open(sys.argv[1])
+file = io.open(sys.argv[1], "r", errors="ignore")
 name = sys.argv[1][:-2]
 
 out = StringIO()
@@ -94,7 +94,7 @@ out.write( "#endif\n" )
 # This prevents a lot of recompilation during development
 out.seek(0)
 try:
-   with open(name + ".h", "r") as orig:
+   with io.open(name + ".h", "r", errors="ignore") as orig:
       origcontents = orig.readlines()
 except:
    origcontents = ""