Skip to content

Commit

Permalink
Merge branch 'release/v1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Sep 2, 2016
2 parents 43c0322 + 427e9e9 commit 4d39882
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion platform.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"type": "git",
"url": "https://github.com/platformio/platform-linux_x86_64.git"
},
"version": "1.0.0",
"version": "1.0.1",
"packageRepositories": [
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
"https://sourceforge.net/projects/platformio-storage/files/packages/manifest.json/download",
Expand Down
5 changes: 3 additions & 2 deletions platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@

class Linux_x86_64Platform(PlatformBase):

def get_packages(self):
packages = PlatformBase.get_packages(self)
@property
def packages(self):
packages = PlatformBase.packages.fget(self)
if (get_systype() == "linux_x86_64" and
"toolchain-gcclinux64" in packages):
del packages['toolchain-gcclinux64']
Expand Down

0 comments on commit 4d39882

Please sign in to comment.