Skip to content

Commit 99068dd

Browse files
author
Rene Leveille
authored
more changes from formatter
1 parent 24463b1 commit 99068dd

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

pythonforandroid/recipes/libpq/__init__.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,11 @@ def build_arch(self, arch):
2222

2323
with current_directory(self.get_build_dir(arch.arch)):
2424
configure = sh.Command('./configure')
25-
shprint(configure, '--without-readline', '--host=arm-linux', _env=env)
25+
shprint(configure, '--without-readline', '--host=arm-linux',
26+
_env=env)
2627
shprint(sh.make, 'submake-libpq', _env=env)
27-
shprint(
28-
sh.cp,
29-
'-a',
30-
'src/interfaces/libpq/libpq.a',
31-
self.ctx.get_libs_dir(arch.arch),
32-
)
28+
shprint(sh.cp, '-a', 'src/interfaces/libpq/libpq.a',
29+
self.ctx.get_libs_dir(arch.arch))
3330

3431

3532
recipe = LibpqRecipe()

0 commit comments

Comments
 (0)