Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aulla committed Sep 18, 2018
1 parent 19cb948 commit e4db64f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build-pineboo-binaries.py
Expand Up @@ -122,10 +122,10 @@ def run(args):
run(args)
if target == "android-32":
try:
os.symlink("%s/../src/bzip2-android/lib/include/bzlib.h" % os.path.abspath(os.path.join(sysroot_dir)), "%s/include/bzlib.h" % sysroot_dir)
os.symlink("%s/../src/bzip2-android/lib/lib/armeabi/libbz2.so" % os.path.abspath(os.path.join(sysroot_dir)), "%s/lib/libbz2.so" % sysroot_dir)
os.symlink("%s/../src/sqlite3-android/build/sqlite3.h" % os.path.abspath(os.path.join(sysroot_dir)), "%s/include/sqlite3.h" % sysroot_dir)
os.symlink("%s/../src/sqlite3-android/obj/local/armeabi/libsqlite3.so" %
os.symlink("%s/../../src/bzip2-android/lib/include/bzlib.h" % os.path.abspath(os.path.join(sysroot_dir)), "%s/include/bzlib.h" % sysroot_dir)
os.symlink("%s/../../src/bzip2-android/lib/lib/armeabi/libbz2.so" % os.path.abspath(os.path.join(sysroot_dir)), "%s/lib/libbz2.so" % sysroot_dir)
os.symlink("%s/../../src/sqlite3-android/build/sqlite3.h" % os.path.abspath(os.path.join(sysroot_dir)), "%s/include/sqlite3.h" % sysroot_dir)
os.symlink("%s/../../src/sqlite3-android/obj/local/armeabi/libsqlite3.so" %
os.path.abspath(os.path.join(sysroot_dir)), "%s/lib/libsqlite3.so" % sysroot_dir)
except:
pass
Expand Down

0 comments on commit e4db64f

Please sign in to comment.