Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
None
-
1.23.1
-
None
-
6fac39c0b5 (qbs/qbs/1.24) 6fac39c0b5 (qbs/qbs/master)
Description
Hello,
the qbspkgconfig module provider tries to replace dots with dashes in pkg-config package names. But it only replaces the first dot.
function getModuleName(packageName) { return packageName.replace('.', '-'); }
should be
function getModuleName(packageName) { return packageName.replace(/\./g, '-'); }
Attachments
For Gerrit Dashboard: QBS-1708 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
439800,2 | Fix handling multiple dots in qbspkgconfig provider | 1.24 | qbs/qbs | Status: MERGED | +2 | +1 |