summaryrefslogtreecommitdiffstats
path: root/solenv
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-04-03 21:04:16 +0300
committerTor Lillqvist <tml@iki.fi>2013-04-03 21:13:17 +0300
commit7aa6f1b01481c1d0f1a12f56ad197c797056c37b (patch)
tree3fa3525ad487c08a3e126b0eae6ef0822b25aa75 /solenv
parentRemove Mac OS X 10.4 and 10.5 SDK support (diff)
downloadcore-7aa6f1b01481c1d0f1a12f56ad197c797056c37b.tar.gz
core-7aa6f1b01481c1d0f1a12f56ad197c797056c37b.zip
Remove Mac OS X for PowerPC support
Change-Id: I10b15141e6a5f93365e1cfa6fbc0c7cc3ea49b15
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/modules/installer/download.pm5
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/;