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:
authorSCG82 <scg082+github@gmail.com>2022-12-05 20:34:33 +0300
committerGitHub <noreply@github.com>2022-12-05 20:34:33 +0300
commitbbb29f8a97cf08f503b10284a0c2c745c3a7d8eb (patch)
tree348a13786e199a018c49b48c66797b7899748c4a
parenta11deb53e4b7f080f0e42df092fefce7ce4c2d33 (diff)
parent1c2228a6e3a7a19c1be14c748e76ef1e23e1d301 (diff)
Merge pull request #80 from Lord-Kamina/master
Fix missing quotes in one otool call.
-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;