From 0f9e9d1fee079e3dfd952c95d10707d2937188d1 Mon Sep 17 00:00:00 2001 From: Surender Yadav Date: Thu, 7 Nov 2024 00:24:18 +0530 Subject: [PATCH] S390x - Fix typo for envoy test (#37015) With reference to PR https://github.com/envoyproxy/envoy/pull/36915 by mistake added the .cc extension instead of the .h extension. So fixing the extension to (options_impl_platform_linux.h). Signed-off-by: Surender Yadav --- source/server/BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/server/BUILD b/source/server/BUILD index 2402305c1bc4..9a4c3dd30775 100644 --- a/source/server/BUILD +++ b/source/server/BUILD @@ -248,7 +248,7 @@ envoy_cc_library( "//bazel:linux_x86_64": ["options_impl_platform_linux.h"], "//bazel:linux_aarch64": ["options_impl_platform_linux.h"], "//bazel:linux_ppc": ["options_impl_platform_linux.h"], - "//bazel:linux_s390x": ["options_impl_platform_linux.cc"], + "//bazel:linux_s390x": ["options_impl_platform_linux.h"], "//bazel:linux_mips64": ["options_impl_platform_linux.h"], "//conditions:default": [], }),