chiark / gitweb /
Formatting fail
authorDaniel Martí <mvdan@mvdan.cc>
Mon, 24 Mar 2014 09:19:39 +0000 (10:19 +0100)
committerDaniel Martí <mvdan@mvdan.cc>
Mon, 24 Mar 2014 09:19:39 +0000 (10:19 +0100)
fdroidserver/build.py

index a908bb36eb8aa6ed71ea7f682caf9733dbe79f47..cb063af6111ff564fd769f3bf49963f34304f557 100644 (file)
@@ -30,7 +30,6 @@ import json
 from ConfigParser import ConfigParser
 from optparse import OptionParser, OptionError
 import logging
-import multiprocessing
 
 import common, metadata
 from common import BuildException, VCSException, FDroidPopen, SilentPopen
@@ -486,7 +485,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
         jni_components = thisbuild.get('buildjni')
         if jni_components == ['yes']:
             jni_components = ['']
-        cmd = [ os.path.join(config['ndk_path'], "ndk-build", "-j1" ]
+        cmd = [ os.path.join(config['ndk_path'], "ndk-build"), "-j1" ]
         for d in jni_components:
             logging.info("Building native code in '%s'" % d)
             manifest = root_dir + '/' + d + '/AndroidManifest.xml'