Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/auriamg/macdylibbundler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregorio Litenstein <g.litenstein@gmail.com>2022-12-05 18:18:28 +0300
committerGregorio Litenstein <g.litenstein@gmail.com>2022-12-05 20:22:28 +0300
commit1c2228a6e3a7a19c1be14c748e76ef1e23e1d301 (patch)
tree348a13786e199a018c49b48c66797b7899748c4a
parenta11deb53e4b7f080f0e42df092fefce7ce4c2d33 (diff)
Fix missing quotes in one otool call.
Apparently this one was missed in #53
-rw-r--r--src/DylibBundler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DylibBundler.cpp b/src/DylibBundler.cpp
index 95295b8..5b8674e 100644
--- a/src/DylibBundler.cpp
+++ b/src/DylibBundler.cpp
@@ -75,7 +75,7 @@ void collectRpaths(const std::string& filename)
return;
}
- std::string cmd = "otool -l " + filename;
+ std::string cmd = "otool -l \"" + filename + "\"";
std::string output = system_get_output(cmd);
std::vector<std::string> lc_lines;