Skip to content

Commit

Permalink
test for buildbot
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Apr 8, 2013
1 parent 9d0c749 commit 48204fc
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions build-android-with-native.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,7 @@ def syscall(args, shell=False, with_print=True):
print(u"-----------\n" + u" ".join(args) + u"\n-----------")

if shell:
# args = ' '.join(args)
pass
args = ' '.join(args)
call(args, shell=shell)


Expand Down Expand Up @@ -305,10 +304,10 @@ def failed_on_step(error_msg):
# even though we need only static, we conpile also shared so it
# switches the -fPIC properly.
syscall(configure_cmd, shell=True)
syscall('make clean')
syscall('make')
syscall('make install')
syscall('make clean')
syscall('make clean', shell=True)
syscall('make', shell=True)
syscall('make install', shell=True)
syscall('make clean', shell=True)

# check that the step went well
if COMPILE_LIBLZMA or COMPILE_LIBZIM or COMPILE_LIBKIWIX:
Expand Down

0 comments on commit 48204fc

Please sign in to comment.