aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2014-11-21 21:21:54 -0500
committerCory Fields <cory-nospam-@coryfields.com>2014-11-25 18:41:27 -0500
commitb7f2cdc8a97ba1a2155c0614895701de0f327154 (patch)
treef487823bc0ab356aa0e1b68c2e3201a0cefb8b67 /configure.ac
parentac0b2393a447bb20f8b0489a67237c98a1cfff4a (diff)
downloadbitcoin-b7f2cdc8a97ba1a2155c0614895701de0f327154.tar.xz
build: disable static lib stripping during osx make install-strip
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 6784521d81..a9dec32272 100644
--- a/configure.ac
+++ b/configure.ac
@@ -281,6 +281,12 @@ case $host in
AC_PATH_TOOL([INSTALLNAMETOOL], [install_name_tool], install_name_tool)
AC_PATH_TOOL([OTOOL], [otool], otool)
AC_PATH_PROGS([GENISOIMAGE], [genisoimage mkisofs],genisoimage)
+
+ dnl libtool will try to strip the static lib, which is a problem for
+ dnl cross-builds because strip attempts to call a hard-coded ld,
+ dnl which may not exist in the path. Stripping the .a is not
+ dnl necessary, so just disable it.
+ old_striplib=
;;
esac
fi