diff options
| author | OBATA Akio <obache@wizdas.com> | 2020-07-23 17:53:20 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-07-23 19:20:30 +0900 | 
| commit | 4ed0a29d338d99971be9eaa9b41db41e02452c15 (patch) | |
| tree | 990fb9621f59d4265a2993110ce597a48e647e8a /qmake/generators/unix/unixmake2.cpp | |
| parent | ff30fd5afbde9ca8e32d4a0d221a39580b55df0d (diff) | |
| download | tqt-4ed0a29d338d99971be9eaa9b41db41e02452c15.tar.gz tqt-4ed0a29d338d99971be9eaa9b41db41e02452c15.zip | |
Fix to detect file conponent from path properly in Makefile generator
It should be either `path.right(path.length() - sep_pos - 1)` or
`path.mid(sep_pos + 1)`.
Signed-off-by: OBATA Akio <obache@wizdas.com>
(cherry picked from commit 5c270c3e26e74609a1821ddd3bb17566ccc53396)
Diffstat (limited to 'qmake/generators/unix/unixmake2.cpp')
| -rw-r--r-- | qmake/generators/unix/unixmake2.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/qmake/generators/unix/unixmake2.cpp b/qmake/generators/unix/unixmake2.cpp index 204c79036..867ae9d8e 100644 --- a/qmake/generators/unix/unixmake2.cpp +++ b/qmake/generators/unix/unixmake2.cpp @@ -1428,7 +1428,7 @@ UnixMakefileGenerator::libtoolFileName()      TQString ret = var("TARGET");      int slsh = ret.findRev(Option::dir_sep);      if(slsh != -1) -	ret = ret.right(ret.length() - slsh); +	ret = ret.right(ret.length() - slsh - 1);      int dot = ret.find('.');      if(dot != -1)  	ret = ret.left(dot); @@ -1512,7 +1512,7 @@ UnixMakefileGenerator::pkgConfigFileName()      TQString ret = var("TARGET");      int slsh = ret.findRev(Option::dir_sep);      if(slsh != -1) -	ret = ret.right(ret.length() - slsh); +	ret = ret.right(ret.length() - slsh - 1);      if(ret.startsWith("lib"))  	ret = ret.mid(3);      int dot = ret.find('.'); | 
