rename libtool macros, revert [8461], make install prefix configurable in libtool_fixup_libdir
SVN-Revision: 8462
This commit is contained in:
parent
c994e41757
commit
b4318f53f9
1 changed files with 3 additions and 3 deletions
|
@ -105,15 +105,15 @@ endif
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# prevent libtool from setting rpath when linking
|
# prevent libtool from setting rpath when linking
|
||||||
define Build/Fix/libtool/rpath
|
define libtool_disable_rpath
|
||||||
find $(PKG_BUILD_DIR) -name 'libtool' | xargs \
|
find $(PKG_BUILD_DIR) -name 'libtool' | xargs \
|
||||||
$(SED) 's,^hardcode_libdir_flag_spec=.*,hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ ",g'
|
$(SED) 's,^hardcode_libdir_flag_spec=.*,hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ ",g'
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# prevent libtool from linking against host development libraries
|
# prevent libtool from linking against host development libraries
|
||||||
define Build/Fix/libtool
|
define libtool_fixup_libdir
|
||||||
find $(PKG_BUILD_DIR) -name '*.la' | xargs \
|
find $(PKG_BUILD_DIR) -name '*.la' | xargs \
|
||||||
$(SED) "s,^$(1)='/usr/lib',$(1)='$(STAGING_DIR)/usr/lib',g"
|
$(SED) "s,^libdir='/usr/lib',libdir='$(strip $(1))/usr/lib',g"
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Prepare
|
define Build/Prepare
|
||||||
|
|
Loading…
Reference in a new issue