Browse Source

Do not skip deployment just because the library is already at the target location

It might be pre-existing (prior to running linuxdeployqt) any may need to be properly deployed nevertheless
master
probonopd 7 years ago
committed by GitHub
parent
commit
099f3c0433
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      tools/linuxdeployqt/shared.cpp

3
tools/linuxdeployqt/shared.cpp

@ -926,8 +926,7 @@ DeploymentInfo deployQtLibraries(QList<LibraryInfo> libraries,
} }
if (library.libraryDirectory.startsWith(bundlePath)) { if (library.libraryDirectory.startsWith(bundlePath)) {
LogNormal() << library.libraryName << "already deployed, skipping."; LogNormal() << library.libraryName << "already at target location";
continue;
} }
if (library.rpathUsed.isEmpty() != true) { if (library.rpathUsed.isEmpty() != true) {

Loading…
Cancel
Save