Skip to content

Commit

Permalink
Merge pull request #1649 from opacam/remove-unused-var-in-archs
Browse files Browse the repository at this point in the history
Remove unused variable in archs.py
  • Loading branch information
AndreMiras authored Jan 31, 2019
2 parents a15598c + bd4e85e commit b168978
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions pythonforandroid/archs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from os import environ
from os.path import (exists, join, dirname, split)
from glob import glob
import sys

from pythonforandroid.recipe import Recipe
from pythonforandroid.util import BuildInterruptingException, build_platform
Expand Down Expand Up @@ -96,10 +95,6 @@ def get_env(self, with_flags_in_cc=True, clang=False):
if self.ctx.ndk == 'crystax':
env['LDFLAGS'] += ' -L{}/sources/crystax/libs/{} -lcrystax'.format(self.ctx.ndk_dir, self.arch)

py_platform = sys.platform
if py_platform in ['linux2', 'linux3']:
py_platform = 'linux'

toolchain_prefix = self.ctx.toolchain_prefix
toolchain_version = self.ctx.toolchain_version
command_prefix = self.command_prefix
Expand Down

0 comments on commit b168978

Please sign in to comment.