replace xargs commands with $(XARGS)
SVN-Revision: 8478
This commit is contained in:
parent
e9fba2c56b
commit
4b23cac27b
@ -106,13 +106,13 @@ endef
|
|||||||
|
|
||||||
# prevent libtool from setting rpath when linking
|
# prevent libtool from setting rpath when linking
|
||||||
define libtool_disable_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 libtool_fixup_libdir
|
define libtool_fixup_libdir
|
||||||
find $(PKG_BUILD_DIR) -name '*.la' | xargs \
|
find $(PKG_BUILD_DIR) -name '*.la' | $(XARGS) \
|
||||||
$(SED) "s,^libdir='/usr/lib',libdir='$(strip $(1))/usr/lib',g"
|
$(SED) "s,^libdir='/usr/lib',libdir='$(strip $(1))/usr/lib',g"
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user