install: there's only a dynamic stack binary on linux now, use that (fix #770)
[ci skip]
This commit is contained in:
		
							parent
							
								
									64c7eb78f4
								
							
						
					
					
						commit
						e1d784cd5f
					
				| @ -213,7 +213,7 @@ do_ubuntu_install() { | |||||||
|   elif is_64_bit ; then |   elif is_64_bit ; then | ||||||
|     install_dependencies |     install_dependencies | ||||||
|     print_bindist_notice |     print_bindist_notice | ||||||
|     install_64bit_static_binary |     install_64bit_linux_binary | ||||||
|   else |   else | ||||||
|     install_dependencies |     install_dependencies | ||||||
|     print_bindist_notice |     print_bindist_notice | ||||||
| @ -239,7 +239,7 @@ do_debian_install() { | |||||||
|   elif is_64_bit ; then |   elif is_64_bit ; then | ||||||
|     install_dependencies |     install_dependencies | ||||||
|     print_bindist_notice |     print_bindist_notice | ||||||
|     install_64bit_static_binary |     install_64bit_linux_binary | ||||||
|   else |   else | ||||||
|     install_dependencies |     install_dependencies | ||||||
|     print_bindist_notice |     print_bindist_notice | ||||||
| @ -259,7 +259,7 @@ do_fedora_install() { | |||||||
|   if is_64_bit ; then |   if is_64_bit ; then | ||||||
|     install_dependencies "$1" |     install_dependencies "$1" | ||||||
|     print_bindist_notice |     print_bindist_notice | ||||||
|     install_64bit_static_binary |     install_64bit_linux_binary | ||||||
|   else |   else | ||||||
|     install_dependencies "$1" |     install_dependencies "$1" | ||||||
|     print_bindist_notice |     print_bindist_notice | ||||||
| @ -279,7 +279,7 @@ do_centos_install() { | |||||||
|   if is_64_bit ; then |   if is_64_bit ; then | ||||||
|     install_dependencies |     install_dependencies | ||||||
|     print_bindist_notice |     print_bindist_notice | ||||||
|     install_64bit_static_binary |     install_64bit_linux_binary | ||||||
|   else |   else | ||||||
|     install_dependencies |     install_dependencies | ||||||
|     case "$1" in |     case "$1" in | ||||||
| @ -332,7 +332,7 @@ do_alpine_install() { | |||||||
|   } |   } | ||||||
|   install_dependencies |   install_dependencies | ||||||
|   if is_64_bit ; then |   if is_64_bit ; then | ||||||
|     install_64bit_static_binary |     install_64bit_linux_binary | ||||||
|   else |   else | ||||||
|     die "Sorry, there is currently no 32-bit Alpine Linux binary available." |     die "Sorry, there is currently no 32-bit Alpine Linux binary available." | ||||||
|   fi |   fi | ||||||
| @ -348,7 +348,7 @@ do_sloppy_install() { | |||||||
|   if is_arm ; then |   if is_arm ; then | ||||||
|       install_arm_binary |       install_arm_binary | ||||||
|   elif is_64_bit ; then |   elif is_64_bit ; then | ||||||
|       install_64bit_static_binary |       install_64bit_linux_binary | ||||||
|   else |   else | ||||||
|       install_32bit_standard_binary |       install_32bit_standard_binary | ||||||
|   fi |   fi | ||||||
| @ -558,6 +558,10 @@ install_32bit_standard_binary() { | |||||||
|   install_from_bindist "linux-i386" |   install_from_bindist "linux-i386" | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | install_64bit_linux_binary() { | ||||||
|  |   install_from_bindist "linux-x86_64" | ||||||
|  | } | ||||||
|  | 
 | ||||||
| install_64bit_static_binary() { | install_64bit_static_binary() { | ||||||
|   install_from_bindist "linux-x86_64-static" |   install_from_bindist "linux-x86_64-static" | ||||||
| } | } | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user