From 68b189ae8b1cc2565a3c59128a9a78de74d14956 Mon Sep 17 00:00:00 2001 From: Mikael Vidstedt Date: Mon, 27 Apr 2020 14:21:19 -0700 Subject: [PATCH] 8243633: Remove cups dependency when building linux at Oracle Reviewed-by: ihse, erikj, tbell --- make/conf/jib-profiles.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/make/conf/jib-profiles.js b/make/conf/jib-profiles.js index f781b23816a..e4cc90d6a5c 100644 --- a/make/conf/jib-profiles.js +++ b/make/conf/jib-profiles.js @@ -464,7 +464,7 @@ var getJibProfilesProfiles = function (input, common, data) { target_os: "linux", target_cpu: "aarch64", build_cpu: "x64", - dependencies: ["devkit", "build_devkit", "cups"], + dependencies: ["devkit", "build_devkit"], configure_args: [ "--openjdk-target=aarch64-linux-gnu", ], @@ -474,7 +474,7 @@ var getJibProfilesProfiles = function (input, common, data) { target_os: "linux", target_cpu: "arm", build_cpu: "x64", - dependencies: ["devkit", "build_devkit", "cups"], + dependencies: ["devkit", "build_devkit"], configure_args: [ "--openjdk-target=arm-linux-gnueabihf", "--with-freetype=bundled", "--with-abi-profile=arm-vfp-hflt", "--disable-warnings-as-errors" @@ -485,7 +485,7 @@ var getJibProfilesProfiles = function (input, common, data) { target_os: "linux", target_cpu: "ppc64le", build_cpu: "x64", - dependencies: ["devkit", "build_devkit", "cups"], + dependencies: ["devkit", "build_devkit"], configure_args: [ "--openjdk-target=ppc64le-linux-gnu", "--with-freetype=bundled", "--disable-warnings-as-errors" @@ -496,7 +496,7 @@ var getJibProfilesProfiles = function (input, common, data) { target_os: "linux", target_cpu: "s390x", build_cpu: "x64", - dependencies: ["devkit", "build_devkit", "cups"], + dependencies: ["devkit", "build_devkit"], configure_args: [ "--openjdk-target=s390x-linux-gnu", "--with-freetype=bundled", "--disable-warnings-as-errors"