From 467228e987d52852d1434824f53fca2dc2c1bbdc Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Tue, 22 Aug 2023 15:41:59 -0500 Subject: [PATCH 1/2] Added aix71 label back now that build host is prepared Ticket: INF-3402 Changelog: none --- build-scripts/exotics.txt | 1 + build-scripts/labels.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/build-scripts/exotics.txt b/build-scripts/exotics.txt index 9f51cd175..8071b0a51 100644 --- a/build-scripts/exotics.txt +++ b/build-scripts/exotics.txt @@ -6,6 +6,7 @@ PACKAGES_x86_64_linux_suse_15 PACKAGES_ia64_hpux_11.23 PACKAGES_ppc64_aix_53 +PACKAGES_ppc64_aix_71 PACKAGES_sparc64_solaris_10 PACKAGES_sparc64_solaris_11 PACKAGES_x86_64_solaris_10 diff --git a/build-scripts/labels.txt b/build-scripts/labels.txt index 9310ad954..5e96f76ee 100644 --- a/build-scripts/labels.txt +++ b/build-scripts/labels.txt @@ -38,4 +38,5 @@ PACKAGES_i386_mingw PACKAGES_x86_64_mingw PACKAGES_ia64_hpux_11.23 +PACKAGES_ppc64_aix_71 PACKAGES_sparc64_solaris_11 From 0d7da1826ad6819273d323f9c67a53e43ee9ac81 Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Tue, 22 Aug 2023 16:33:28 -0500 Subject: [PATCH 2/2] Added needed /opt/freeware/bin to $PATH for AIX 7.1 For newer perl, wget and cpio installed via yum. Ticket: INF-3402 Changelog: none --- build-scripts/functions | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-scripts/functions b/build-scripts/functions index 83b218691..e24c532f9 100644 --- a/build-scripts/functions +++ b/build-scripts/functions @@ -93,7 +93,9 @@ export_variables () case $UNAME_S in AIX) # We need to use GCC6 on new AIX 7 VMs (AIX 5 doesn't have the folder). - PATH="/opt/freeware/gcc6/bin/:$PATH" ;; + PATH="/opt/freeware/gcc6/bin/:$PATH" + # We need to use /opt/freeware/bin first, for e.g. wget and newer perl 5.34 on aix 7.1 + PATH="/opt/freeware/bin:$PATH" ;; SunOS) # Currently we rely strongly on OpenCSW packages. PATH="/opt/csw/bin:/usr/xpg4/bin:$PATH" ;;