Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ve paths in LOCAL_SRC_FILES)
  • Loading branch information
Wladimir Palant committed May 16, 2013
1 parent 7ab1ab0 commit 8035ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylib/gyp/generator/make.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1752,7 +1752,7 @@ def WriteAndroidNdkModuleRule(self, module_name, all_sources, link_deps):
default_cpp_ext = ext default_cpp_ext = ext
self.WriteLn('LOCAL_CPP_EXTENSION := ' + default_cpp_ext) self.WriteLn('LOCAL_CPP_EXTENSION := ' + default_cpp_ext)


self.WriteList(map(self.Absolutify, filter(Compilable, all_sources)), self.WriteList(map(Sourceify, map(self.Absolutify, filter(Compilable, all_sources))),
'LOCAL_SRC_FILES') 'LOCAL_SRC_FILES')


# Filter out those which do not match prefix and suffix and produce # Filter out those which do not match prefix and suffix and produce
Expand Down

0 comments on commit 8035ac9

Please sign in to comment.