diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-12-27 02:11:03 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-12-27 02:11:03 +0000 |
commit | c00e7702456a5ae784d942c08c822e47c1988533 (patch) | |
tree | d214c39a19b49b58acc1d287b95c4069b168c295 /package/libtool/patches/110-no_rpath.patch | |
parent | 8c1d3fd1912fc16bac084d79d9432b676130f56a (diff) | |
download | master-187ad058-c00e7702456a5ae784d942c08c822e47c1988533.tar.gz master-187ad058-c00e7702456a5ae784d942c08c822e47c1988533.tar.bz2 master-187ad058-c00e7702456a5ae784d942c08c822e47c1988533.zip |
upgrade libtool, add fixes for libdir searching, fix up paths to .la files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9941 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libtool/patches/110-no_rpath.patch')
-rw-r--r-- | package/libtool/patches/110-no_rpath.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package/libtool/patches/110-no_rpath.patch b/package/libtool/patches/110-no_rpath.patch new file mode 100644 index 0000000000..7c92524b3b --- /dev/null +++ b/package/libtool/patches/110-no_rpath.patch @@ -0,0 +1,32 @@ +Well, brute force to disable rpath. + +Only +-hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) ++#hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) + +should be necessary.... + +Index: libtool-1.5.10/libtool.m4 +=================================================================== +--- libtool-1.5.10.orig/libtool.m4 2007-05-27 23:31:51.000000000 +0200 ++++ libtool-1.5.10/libtool.m4 2007-05-27 23:50:26.000000000 +0200 +@@ -4244,16 +4244,16 @@ + hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) + + # Whether we should hardcode library paths into libraries. +-hardcode_into_libs=$hardcode_into_libs ++hardcode_into_libs=no + + # Flag to hardcode \$libdir into a binary during linking. + # This must work even if \$libdir does not exist. +-hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) ++hardcode_libdir_flag_spec= + + # If ld is used when linking, flag to hardcode \$libdir into + # a binary during linking. This must work even if \$libdir does + # not exist. +-hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) ++hardcode_libdir_flag_spec_ld= + + # Whether we need a single -rpath flag with a separated argument. + hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) |