diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-12-09 22:57:48 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-12-09 22:58:39 +0100 |
commit | d575e3a14beef8bdd3517c024b9aab8a17b3ef7b (patch) | |
tree | abb6ea0bbd1a8592c7b387409935b2ad2a2cfe87 /bin | |
parent | b3711ada7af3a2d1fd43879099d8fc7f9181a9e9 (diff) |
fix copy&paste error in ide-integration script
Change-Id: I4e52851b41e3d5ec4fe4ae5277928bceac3c8283
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gbuild-to-ide | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide index 6d549cb45299..7de2fb48d371 100755 --- a/bin/gbuild-to-ide +++ b/bin/gbuild-to-ide @@ -60,7 +60,7 @@ class GbuildTest(GbuildLinkTarget): def short_name(self): """Return the short name of target based n the CppunitTest_* makefile names""" - return 'Library %s' % self.name + return 'CppunitTest %s' % self.name def target_name(self): return 'CppunitTest_%s' % self.test |