From 0d7da1826ad6819273d323f9c67a53e43ee9ac81 Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Tue, 22 Aug 2023 16:33:28 -0500 Subject: [PATCH] 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" ;;