diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-01 11:57:57 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-01 11:57:57 (GMT) |
commit | d7a1cf69ea03fdf4ff49915656555a5bb2c00f29 (patch) | |
tree | 3b9376ef09cf053f5abece4d59a2d76998c399df /UI/Qt/qmakeish.py | |
parent | 015fb6f55f7bc2f822e4b6d959490f23b21a5f74 (diff) | |
download | swift-d7a1cf69ea03fdf4ff49915656555a5bb2c00f29.zip swift-d7a1cf69ea03fdf4ff49915656555a5bb2c00f29.tar.bz2 |
Fix qmakeish.
Diffstat (limited to 'UI/Qt/qmakeish.py')
-rwxr-xr-x | UI/Qt/qmakeish.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UI/Qt/qmakeish.py b/UI/Qt/qmakeish.py index 1625bd0..fb85c44 100755 --- a/UI/Qt/qmakeish.py +++ b/UI/Qt/qmakeish.py @@ -80,7 +80,7 @@ for line in makefile : continue match = re.match("(\w+)_SOURCES (\+?)= (.*)", line) - if match and match.group(1) in ["SWIFT", "ZLIB", "LIBIDN", "BOOST"] : + if match and match.group(1) in ["SWIFTEN", "ZLIB", "LIBIDN", "BOOST"] : inSources = processSourcesLine(match.group(3)) continue |