Skip to content

Commit

Permalink
Merge pull request #5370
Browse files Browse the repository at this point in the history
b7f2cdc build: disable static lib stripping during osx make install-strip (Cory Fields)
  • Loading branch information
laanwj committed Nov 26, 2014
2 parents 124b489 + b7f2cdc commit 91eaedd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 91eaedd

Please sign in to comment.