diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2014-12-30 16:33:15 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-01-05 12:42:04 +0100 |
commit | 4ee78bfb8a526f250184958fda717032b47a5e96 (patch) | |
tree | 6bd5d01bc513cbe5a225689d824f92781003b3cf /src | |
parent | 9e32c1abc13bd13365ad4980b367aa0073f4736c (diff) | |
download | qt-creator-4ee78bfb8a526f250184958fda717032b47a5e96.tar.gz |
buildoutputparser: Respect $QTC_PREFIX.
Do what all other targets already do and take $$QTC_PREFIX into
consideration when setting the target's installation path.
Change-Id: I6ca87d36b345ec256518fe2d349e58d213f5c6d5
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/buildoutputparser/buildoutputparser.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/buildoutputparser/buildoutputparser.pro b/src/tools/buildoutputparser/buildoutputparser.pro index 4f762f2b02..207890898e 100644 --- a/src/tools/buildoutputparser/buildoutputparser.pro +++ b/src/tools/buildoutputparser/buildoutputparser.pro @@ -13,7 +13,7 @@ include(../../rpath.pri) win32|equals(TEST, 1):DEFINES += HAS_MSVC_PARSER DESTDIR = $$IDE_BIN_PATH -target.path = /bin +target.path = $$QTC_PREFIX/bin INSTALLS += target SOURCES = \ |