OpenJDK / portola / portola
changeset 54210:564043cbe138
8220737: Jib based 32 bit windows builds fail
Reviewed-by: tbell, dholmes
author | erikj |
---|---|
date | Mon, 18 Mar 2019 17:33:59 +0100 |
parents | e81b44c68680 |
children | d265655be483 |
files | make/conf/jib-profiles.js |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/make/conf/jib-profiles.js Mon Mar 18 16:33:28 2019 +0100 +++ b/make/conf/jib-profiles.js Mon Mar 18 17:33:59 2019 +0100 @@ -955,7 +955,8 @@ : input.target_platform); var devkit_cross_prefix = ""; - if (input.target_platform != input.build_platform) { + if (input.build_platform != input.target_platform + && input.build_platform != devkit_platform) { devkit_cross_prefix = input.build_platform + "-to-"; }