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 | 01dd5fc03aec5e2e0590b469bb17709dcb841861 (patch) | |
tree | 5ed367409b643e52c8a3726d18289d76e8886c86 /package/libtool/Makefile | |
parent | 4fe3a3e727c5e85815f798d848129f7d4e10a7bb (diff) | |
download | upstream-01dd5fc03aec5e2e0590b469bb17709dcb841861.tar.gz upstream-01dd5fc03aec5e2e0590b469bb17709dcb841861.tar.bz2 upstream-01dd5fc03aec5e2e0590b469bb17709dcb841861.zip |
upgrade libtool, add fixes for libdir searching, fix up paths to .la files
SVN-Revision: 9941
Diffstat (limited to 'package/libtool/Makefile')
-rw-r--r-- | package/libtool/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/package/libtool/Makefile b/package/libtool/Makefile index 1aad641986..c3feb9ec8b 100644 --- a/package/libtool/Makefile +++ b/package/libtool/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libtool -PKG_VERSION:=1.5.22 +PKG_VERSION:=1.5.24 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -21,6 +21,7 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk CONFIGURE_PREFIX=$(STAGING_DIR)/host +export GLOBAL_LIBDIR=$(STAGING_DIR)/usr/lib define Package/libltdl SECTION:=libs @@ -31,11 +32,17 @@ endef define Build/InstallDev $(MAKE) -C $(PKG_BUILD_DIR) \ + bindir="$(2)/bin" \ + datadir="$(2)/share" \ prefix="$(2)" \ exec_prefix="$(2)" \ install $(INSTALL_DIR) $(1)/lib mv $(2)/lib/* $(1)/lib/ +# $(SED) 's,^dlopen_self=unknown,dlopen_self=yes,' \ +# -e 's,^dlopen_self_static=unknown,dlopen_self_static=no,' \ +# -e 's,^link_all_deplibs=unknown,link_all_deplibs=no,' \ +# $(2)/bin/libtool endef define Package/libltdl/install |