summaryrefslogtreecommitdiffstats
path: root/source-builder/pkg-config
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-03-16 17:14:45 +1100
committerChris Johns <chrisj@rtems.org>2016-03-16 17:14:45 +1100
commited86b4b0063dabc2f680e3f56b6ff661ec2e51fe (patch)
treed967b63a2772900ceeeac56cd41de0081802a6de /source-builder/pkg-config
parentsb: Do not expand the package name in a bset file. (diff)
downloadrtems-source-builder-ed86b4b0063dabc2f680e3f56b6ff661ec2e51fe.tar.bz2
bare/devel/qemu: Fix the release URL logic and pkconfig python3 issues.
Closes #2645.
Diffstat (limited to 'source-builder/pkg-config')
-rwxr-xr-xsource-builder/pkg-config5
1 files changed, 3 insertions, 2 deletions
diff --git a/source-builder/pkg-config b/source-builder/pkg-config
index d2afff0..a5dfba0 100755
--- a/source-builder/pkg-config
+++ b/source-builder/pkg-config
@@ -87,8 +87,9 @@ def log(s, lf = True):
print(s, file = out)
else:
if out != sys.stdout and trace_stdout:
- print(s, end = '', flush = True)
- print(out, s, end = '', flush = True)
+ print(s, end = '')
+ sys.stdout.flush()
+ print(s, end = '', file = out)
def run(argv):