diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-04-03 21:04:16 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-04-03 21:13:17 +0300 |
commit | 7aa6f1b01481c1d0f1a12f56ad197c797056c37b (patch) | |
tree | 3fa3525ad487c08a3e126b0eae6ef0822b25aa75 /solenv/bin/modules | |
parent | d8842c2221cb5e6ea958381f9dcd76d9bb9bbafc (diff) |
Remove Mac OS X for PowerPC support
Change-Id: I10b15141e6a5f93365e1cfa6fbc0c7cc3ea49b15
Diffstat (limited to 'solenv/bin/modules')
-rw-r--r-- | solenv/bin/modules/installer/download.pm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/solenv/bin/modules/installer/download.pm b/solenv/bin/modules/installer/download.pm index 18d2768eada4..96ecf6152b79 100644 --- a/solenv/bin/modules/installer/download.pm +++ b/solenv/bin/modules/installer/download.pm @@ -424,10 +424,6 @@ sub get_download_architecture { $arch = "x86-64"; } - elsif ( $installer::globals::compiler =~ /^unxmacxp/ ) - { - $arch = "PPC"; - } return $arch; } @@ -599,7 +595,6 @@ sub resolve_variables_in_downloadname elsif ( $installer::globals::islinuxbuild ) { $os = "linux"; } elsif ( $installer::globals::compiler =~ /unxmacxi/ ) { $os = "macosxi"; } elsif ( $installer::globals::compiler =~ /unxmacxx/ ) { $os = "macosxx"; } - elsif ( $installer::globals::compiler =~ /unxmacxp/ ) { $os = "macosxp"; } else { $os = ""; } $downloadname =~ s/\{os\}/$os/; |