mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 19:49:54 +02:00
replace xargs commands with $(XARGS)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8478 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
54ca5395e8
commit
8fde2f44bb
@ -106,13 +106,13 @@ endef
|
||||
|
||||
# prevent libtool from setting rpath when linking
|
||||
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'
|
||||
endef
|
||||
|
||||
# prevent libtool from linking against host development libraries
|
||||
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"
|
||||
endef
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user