summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-11-13 11:44:31 +0100
committerChris Johns <chrisj@rtems.org>2015-11-13 22:53:59 +1100
commitadacadfc9203d06d7523ba6ce4bfb44308a73ee7 (patch)
treea0d2b4da113c6b2a1afb08c0d63222a970714ef3
parentAdd missing pkgconfig module (diff)
downloadrtems_waf-adacadfc9203d06d7523ba6ce4bfb44308a73ee7.tar.bz2
Python 3 compatibility
-rw-r--r--pkgconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgconfig.py b/pkgconfig.py
index d865feb..382f4dc 100644
--- a/pkgconfig.py
+++ b/pkgconfig.py
@@ -74,7 +74,7 @@ class package:
while expanded:
expanded = False
if tm:
- print 'pc:get: "' + s + '"'
+ print('pc:get: "' + s + '"')
ms = mre.findall(s)
for m in ms:
mn = m[2:-1]