Skip to content

Commit

Permalink
Use gmake instead of make on AIX to avoid aqa-tests issue 5542 (#5550)
Browse files Browse the repository at this point in the history
...where make fails with this error:
make: Dependency line needs colon or double colon operator.

Signed-off-by: Adam Farley <[email protected]>
  • Loading branch information
adamfarley authored Oct 8, 2024
1 parent f9d45fe commit 886db81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildenv/jenkins/JenkinsfileBase
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def genParallelList(PARALLEL_OPTIONS) {
if (JDK_IMPL == 'hotspot' && PLATFORM.contains('alpine-linux')) {
unsetLLP = "unset LD_LIBRARY_PATH;"
}
sh "cd ./aqa-tests/TKG; ${unsetLLP} make genParallelList ${PARALLEL_OPTIONS}"
sh "cd ./aqa-tests/TKG; $RESOLVED_MAKE; ${unsetLLP} \$MAKE genParallelList ${PARALLEL_OPTIONS}"
def parallelList = "aqa-tests/TKG/parallelList.mk"
int NUM_LIST = -1
if (fileExists("${parallelList}")) {
Expand Down

0 comments on commit 886db81

Please sign in to comment.