From 0a71f5dae699728ff2513df261607283b5092a67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Szab=C3=B3?= Date: Mon, 30 Mar 2026 15:01:24 +0200 Subject: [PATCH] Lowercase fizz reference in proxygen listfile Since D91009064 the proxygen listfile explicitly looks for `fizz` via the lowercase name, so help it find the installed CMake config. --- third-party/proxygen/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/proxygen/CMakeLists.txt b/third-party/proxygen/CMakeLists.txt index 3d91b633e0caa8..ae2f05a499fd0a 100644 --- a/third-party/proxygen/CMakeLists.txt +++ b/third-party/proxygen/CMakeLists.txt @@ -47,7 +47,7 @@ ExternalProject_Add( -DZSTD_INCLUDE_DIR=${ZSTD_INCLUDE_DIR} -DZSTD_LIBRARY_RELEASE=${ZSTD_LIBRARY} - "-DFizz_DIR=${FIZZ_INSTALL_DIR}/lib/cmake/fizz" + "-Dfizz_DIR=${FIZZ_INSTALL_DIR}/lib/cmake/fizz" "-Dfmt_DIR=${fmt_DIR}" "-Dfolly_DIR=${FOLLY_INSTALL_DIR}/lib/cmake/folly" "-Dwangle_DIR=${WANGLE_INSTALL_DIR}/lib/cmake/wangle"