+ link android-support-v4.jar from the dependencies instead of having a copy in the source code

This commit is contained in:
kelson42 2013-12-19 14:38:30 +01:00
parent 491359a338
commit b75dadc8df
2 changed files with 7 additions and 0 deletions

View File

@ -296,6 +296,13 @@ for arch in ARCHS:
syscall('ln -sf %(src)s %(dest)s/' syscall('ln -sf %(src)s %(dest)s/'
% {'src': ln_src, 'dest': dest}) % {'src': ln_src, 'dest': dest})
# add a link to android-support-v4.jar
ln_src = '%(SDK_PATH)s/extras/android/support/v4/android-support-v4.jar' % {'SDK_PATH': SDK_PATH}
dest = 'libs/'
syscall('ln -sf %(src)s %(dest)s'
% {'src': ln_src, 'dest': dest})
sys.exit(0)
# check that the step went well # check that the step went well
if CREATE_TOOLCHAIN or COMPILE_LIBLZMA or COMPILE_LIBZIM or \ if CREATE_TOOLCHAIN or COMPILE_LIBLZMA or COMPILE_LIBZIM or \
COMPILE_LIBKIWIX or STRIP_LIBKIWIX: COMPILE_LIBKIWIX or STRIP_LIBKIWIX:

Binary file not shown.