From 58311fb3acaba3e997dc69ff9867a70c6558f0e1 Mon Sep 17 00:00:00 2001 From: SCG82 Date: Wed, 8 Jan 2020 01:49:21 -0800 Subject: [PATCH] fix incorrect path for otool --- src/Utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils.cpp b/src/Utils.cpp index f3d6405..f3db510 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -134,7 +134,7 @@ std::string systemOutput(const std::string& cmd) void otool(const std::string& flags, const std::string& file, std::vector& lines) { - std::string command = std::string("/bin/otool ").append(flags).append(" ").append(file); + std::string command = std::string("/usr/bin/otool ").append(flags).append(" ").append(file); std::string output = systemOutput(command); if (output.find("can't open file") != std::string::npos