From 37093217f1e87c8b5ef9f8bf0f900af2a7274c08 Mon Sep 17 00:00:00 2001 From: Surender Yadav Date: Wed, 6 Nov 2024 20:59:09 +0530 Subject: [PATCH] S390x - Fix typo for envoy test 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": [], }),