diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-11-29 11:55:30 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-11-29 11:55:30 +0100 |
commit | a7e179499bb0a05bf9c2638eeeabe9a08967a6ae (patch) | |
tree | 1dec8ee18e3e33fbc0eb511e09b94276a5fa8d46 /scripts/Util.py | |
parent | Fixed ObjC ami test failure, JS ACM test failures, Windows Python 3 script fa... (diff) | |
download | ice-a7e179499bb0a05bf9c2638eeeabe9a08967a6ae.tar.bz2 ice-a7e179499bb0a05bf9c2638eeeabe9a08967a6ae.tar.xz ice-a7e179499bb0a05bf9c2638eeeabe9a08967a6ae.zip |
Fixed bug which prevented IceBox to find services
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 46ad937ea1d..0221e94305b 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -1774,7 +1774,7 @@ class CppMapping(Mapping): # if current.testcase: for d in set([current.getBuildDir(d) for d in current.testcase.getTestSuite().getLibDirs()]): - libPaths.append(current.getBuildDir(d)) + libPaths.append(d) env = {} if len(libPaths) > 0: |