diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-10-06 15:18:08 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-10-06 15:18:08 +0300 |
commit | 30fc1a3f5470cb347eb4aed281242f120510466f (patch) | |
tree | fade9b5fa4d89601bf63ea6d1304faab1c829f5f | |
parent | 6ca01b9a104ebadbe7e180cb2b9d390f7c09b4ab (diff) |
build: Remove workaround for ancient libtool
Since libtool 1.5.2, on Linux libtool no longer sets RPATH for any
directories in the dynamic linker search path, so there is no longer an
issue.
This commit reverts a98356fee8a44d7d1cb37f22c876fff8f244365e.
-rw-r--r-- | configure.ac | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac index f1738ab79c..d25e0f4496 100644 --- a/configure.ac +++ b/configure.ac @@ -1664,17 +1664,6 @@ AC_CONFIG_SUBDIRS([src/secp256k1]) AC_OUTPUT -dnl Taken from https://wiki.debian.org/RpathIssue -case $host in - *-*-linux-gnu) - AC_MSG_RESULT([Fixing libtool for -rpath problems.]) - sed < libtool > libtool-2 \ - 's/^hardcode_libdir_flag_spec.*$'/'hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/' - mv libtool-2 libtool - chmod 755 libtool - ;; -esac - dnl Replace the BUILDDIR path with the correct Windows path if compiling on Native Windows case ${OS} in *Windows*) |