Skip to content

Commit

Permalink
Added needed /opt/freeware/bin to $PATH for AIX 7.1
Browse files Browse the repository at this point in the history
For newer perl, wget and cpio installed via yum.

Ticket: INF-3402
Changelog: none
  • Loading branch information
craigcomstock committed Aug 22, 2023
1 parent 467228e commit 0d7da18
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build-scripts/functions
Original file line number Diff line number Diff line change
Expand Up @@ -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" ;;
Expand Down

0 comments on commit 0d7da18

Please sign in to comment.