You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* unixPB: Additional changes to allow use on CS10
Signed-off-by: Stewart X Addison <[email protected]>
---------
Signed-off-by: Stewart X Addison <[email protected]>
Copy file name to clipboardExpand all lines: ansible/playbooks/AdoptOpenJDK_Unix_Playbook/roles/nasm/tasks/main.yml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -90,14 +90,15 @@
90
90
- (nasm_installed.rc is defined) and ((nasm_installed.rc != 0 ) or (nasm_installed.rc == 0 and nasm.stdout is version_compare(nasm_version, operator='ne')))
91
91
tags: nasm
92
92
93
-
- name: Running ./configure & make for nasm ( Not Ubuntu 22+ and not Fedora 35+ )
93
+
- name: Running ./configure & make for nasm ( Not Ubuntu 22+ and not Fedora 35+ based distros )
94
94
shell: cd /tmp/nasm-{{ nasm_version }} && CC={{ CC }} && ./configure -prefix=/usr/local && make install
95
95
environment:
96
96
CC: "{{ CC }}"
97
97
when:
98
98
- (ansible_distribution != "Ubuntu") or (ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int < 22)
99
99
- (ansible_distribution != "Fedora") or (ansible_distribution == "Fedora" and ansible_distribution_major_version | int < 35)
100
100
- (ansible_distribution != "RedHat") or (ansible_distribution == "RedHat" and ansible_distribution_major_version | int < 10)
101
+
- (ansible_distribution != "CentOS") or (ansible_distribution == "CentOS" and ansible_distribution_major_version | int < 10)
101
102
- nasm_installed.rc is defined
102
103
- (nasm_installed.rc != 0 or (nasm_installed.rc == 0 and nasm.stdout is version_compare(nasm_version, operator='ne')))
0 commit comments