diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2010-02-20 23:40:53 +0000 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2010-02-20 23:40:53 +0000 |
commit | bd2e3ccd6ff5041593f064eac929e3cf5374d474 (patch) | |
tree | 422b68b79d1f99bc04b0c013d26ffda7e8276586 /include/autotools.mk | |
parent | d6b0f9d0936c5433f317ffe5c6761aa413decdc0 (diff) | |
download | upstream-bd2e3ccd6ff5041593f064eac929e3cf5374d474.tar.gz upstream-bd2e3ccd6ff5041593f064eac929e3cf5374d474.tar.bz2 upstream-bd2e3ccd6ff5041593f064eac929e3cf5374d474.zip |
autotools.mk: Don't try to fixup .la files in the DevInstall host path, because those .la files shouldn't go there anyway.
SVN-Revision: 19785
Diffstat (limited to 'include/autotools.mk')
-rw-r--r-- | include/autotools.mk | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/autotools.mk b/include/autotools.mk index f85026a944..e1535d0b16 100644 --- a/include/autotools.mk +++ b/include/autotools.mk @@ -38,9 +38,6 @@ define libtool_fixup_libdir find $(1) -name '*.la' | $(XARGS) \ $(SED) "s,\(^libdir='\| \|-L\|^dependency_libs='\)/usr/lib,\1$(STAGING_DIR)/usr/lib,g" \ -e "s,$(STAGING_DIR)/usr/lib/\(libstdc++\|libsupc++\).la,$(TOOLCHAIN_DIR)/usr/lib/\1.la,g" - find $(2) -name '*.la' | $(XARGS) \ - $(SED) "s,\(^libdir='\| \|-L\|^dependency_libs='\)/usr/lib,\1$(STAGING_DIR)/usr/lib,g" \ - -e "s,$(STAGING_DIR)/usr/lib/\(libstdc++\|libsupc++\).la,$(TOOLCHAIN_DIR)/usr/lib/\1.la,g" endef define remove_version_check |