diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-04-16 11:59:06 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-04-16 11:59:06 +0200 |
commit | e04c41eceb0ca2e8105627f59876872f78acba71 (patch) | |
tree | badc00d18c9b1824fcab0cacef0f9ecea4ee6831 | |
parent | 4f65c851df8ece1e79460fa16c7d8cd50f37575d (diff) |
bootstrap: fix typo
-rw-r--r-- | cerbero/bootstrap/linux.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/bootstrap/linux.py b/cerbero/bootstrap/linux.py index 2b350d5..7eabe5a 100644 --- a/cerbero/bootstrap/linux.py +++ b/cerbero/bootstrap/linux.py @@ -61,7 +61,7 @@ class DebianBootstraper (UnixBootstraper): def __init__(self, config): UnixBootstraper.__init__(self, config) - if self.target_platform == Platform.WINDOWS: + if self.config.target_platform == Platform.WINDOWS: if self.config.arch == Architecture.X86_64: self.packages.append('ia32-libs') if self.config.distro_version in [DistroVersion.DEBIAN_SQUEEZE, |