We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24463b1 commit 99068ddCopy full SHA for 99068dd
pythonforandroid/recipes/libpq/__init__.py
@@ -22,14 +22,11 @@ def build_arch(self, arch):
22
23
with current_directory(self.get_build_dir(arch.arch)):
24
configure = sh.Command('./configure')
25
- shprint(configure, '--without-readline', '--host=arm-linux', _env=env)
+ shprint(configure, '--without-readline', '--host=arm-linux',
26
+ _env=env)
27
shprint(sh.make, 'submake-libpq', _env=env)
- shprint(
28
- sh.cp,
29
- '-a',
30
- 'src/interfaces/libpq/libpq.a',
31
- self.ctx.get_libs_dir(arch.arch),
32
- )
+ shprint(sh.cp, '-a', 'src/interfaces/libpq/libpq.a',
+ self.ctx.get_libs_dir(arch.arch))
33
34
35
recipe = LibpqRecipe()
0 commit comments