aboutsummaryrefslogtreecommitdiff
path: root/include/shlib.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-03-12 08:58:04 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-03-12 08:58:04 -0400
commit79a728e11d9b4fdc8bd2860e3cf8845e84102639 (patch)
tree70f2a6971afa9c92463662e912e420f8613e8f88 /include/shlib.h
parentceaddb377886ffb59d36ce2251bc3c7da73d7078 (diff)
downloadspmc-79a728e11d9b4fdc8bd2860e3cf8845e84102639.tar.gz
Use system utilities to check rpath
Diffstat (limited to 'include/shlib.h')
-rw-r--r--include/shlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/shlib.h b/include/shlib.h
index 3489443..e4d0d08 100644
--- a/include/shlib.h
+++ b/include/shlib.h
@@ -2,10 +2,10 @@
#define SPM_SHLIB_H
#ifdef __APPLE__
-#define SPM_SHLIB_EXEC "otool"
+#define SPM_SHLIB_EXEC "/usr/bin/otool"
#define SPM_SHLIB_EXEC_ARGS "-l"
#else
-#define SPM_SHLIB_EXEC "objdump"
+#define SPM_SHLIB_EXEC "/usr/bin/objdump"
#define SPM_SHLIB_EXEC_ARGS "-p"
#endif