diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-10-10 18:12:38 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-10-10 18:12:38 +0200 |
commit | 548383a8fca76d142313380ef18446accf8e61ae (patch) | |
tree | e7545316379cdfbe459274d2d857126107e63b7d /data | |
parent | 23f6b4a1bf31391e90be3d6998f6d3229c99a4fe (diff) |
ndk-build: fix parsing of libtool libraries for multi arch
The libtool-clear-vars rule was duplicated and the incorrect
one was being used so cached variables were not cleared and
the libtool libraries in the new root were not parsed.
Diffstat (limited to 'data')
-rw-r--r-- | data/ndk-build/tools.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/data/ndk-build/tools.mk b/data/ndk-build/tools.mk index 1e22a96b..c8f5a05d 100644 --- a/data/ndk-build/tools.mk +++ b/data/ndk-build/tools.mk @@ -243,10 +243,6 @@ libtool-find-lib = \ ) \ $(firstword $(__tmpvar)) -libtool-clear-vars = \ - $(eval __libtool.link.command := $(empty)) - $(eval __libtool.link.Lpath := $(empty)) - libtool-name-from-filepath = \ $(patsubst lib%.la,%,$(notdir $1)) |