From 1c2228a6e3a7a19c1be14c748e76ef1e23e1d301 Mon Sep 17 00:00:00 2001 From: Gregorio Litenstein Date: Mon, 5 Dec 2022 12:18:28 -0300 Subject: Fix missing quotes in one otool call. Apparently this one was missed in #53 --- src/DylibBundler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 lc_lines; -- cgit v1.2.3