diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-11-26 11:07:08 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-11-26 11:07:25 +0100 |
commit | 91eaedd4ce41f1555269586e45a47296e6614f91 (patch) | |
tree | 50e7e9edfe32248c2822902760760369986c2509 | |
parent | 124b4895b85998cb5b935767f682fc633ee3ac76 (diff) | |
parent | b7f2cdc8a97ba1a2155c0614895701de0f327154 (diff) |
Merge pull request #5370
b7f2cdc build: disable static lib stripping during osx make install-strip (Cory Fields)
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1814180864..9814197af3 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 |