summaryrefslogtreecommitdiffstatshomepage
path: root/src/build/makelist.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/build/makelist.py')
-rw-r--r--src/build/makelist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build/makelist.py b/src/build/makelist.py
index a25012515ec..15c0ac9b605 100644
--- a/src/build/makelist.py
+++ b/src/build/makelist.py
@@ -10,7 +10,7 @@ def parse_file(srcfile):
try:
fp = open(srcfile, 'rb')
except IOError:
- print("Unable to open source file '%s'" % srcfile)
+ sys.stderr.write("Unable to open source file '%s'\n" % srcfile)
return 1
in_comment = 0
linenum = 0