Skip to content

Commit

Permalink
aix: use fullpath for (g)make so PATH does not need to be modified at…
Browse files Browse the repository at this point in the history
… system level (#3441)
  • Loading branch information
aixtools authored Aug 1, 2023
1 parent 130a70c commit 58d972a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sbin/common/config_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,10 @@ function configDefaults() {
BUILD_CONFIG[FREETYPE_FONT_BUILD_TYPE_PARAM]=""

case "${BUILD_CONFIG[OS_KERNEL_NAME]}" in
aix | sunos | *bsd )
aix )
BUILD_CONFIG[MAKE_COMMAND_NAME]="/opt/freeware/bin/make_64"
;;
sunos | *bsd )
BUILD_CONFIG[MAKE_COMMAND_NAME]="gmake"
;;
* )
Expand Down

0 comments on commit 58d972a

Please sign in to comment.