Update OS builds link title for packaging installer

Change-Id: Ic150fb17051e94cbe5ff8a0bb9c60b17b0bbf6bd
Signed-off-by: Eric Poirier <eric.poirier@eclipse-foundation.org>
diff --git a/classes/downloads/eclipseInstaller.php b/classes/downloads/eclipseInstaller.php
index 35073db..4bdfa77 100644
--- a/classes/downloads/eclipseInstaller.php
+++ b/classes/downloads/eclipseInstaller.php
@@ -378,7 +378,7 @@
     $eclipse_env = $this->getEclipseEnv();
 
     if (!empty($data['files']['mac64'])) {
-      $this->addlink('macOS', str_replace('www.eclipse.org', $eclipse_env['domain'], $data['files']['mac64']['url']), "64 bit", $data['files']['mac64']['jre']);
+      $this->addlink('macOS', str_replace('www.eclipse.org', $eclipse_env['domain'], $data['files']['mac64']['url']), "x86-64", $data['files']['mac64']['jre']);
     }
 
     if (!empty($data['files']['win32'])) {
@@ -386,7 +386,7 @@
     }
 
     if (!empty($data['files']['win64'])) {
-      $this->addlink('Windows', str_replace('www.eclipse.org', $eclipse_env['domain'], $data['files']['win64']['url']), '64 bit', $data['files']['win64']['jre']);
+      $this->addlink('Windows', str_replace('www.eclipse.org', $eclipse_env['domain'], $data['files']['win64']['url']), 'x86-64', $data['files']['win64']['jre']);
     }
 
     if (!empty($data['files']['linux32'])) {
@@ -394,7 +394,7 @@
     }
 
     if (!empty($data['files']['linux64'])) {
-      $this->addlink('Linux', str_replace('www.eclipse.org', $eclipse_env['domain'], $data['files']['linux64']['url']), "64 bit", $data['files']['linux64']['jre']);
+      $this->addlink('Linux', str_replace('www.eclipse.org', $eclipse_env['domain'], $data['files']['linux64']['url']), "x86-64", $data['files']['linux64']['jre']);
     }
   }