From a4dc1eb330d5991c390b67f7fec4f6212064d0db Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Fri, 30 Jul 2021 12:24:27 -0700 Subject: [PATCH] Lagom: Fix oss-fuzz build error due to CMake typo The OSS-Fuzz build was failing with the following error: /usr/bin/ld: cannot find -l{} --- Meta/Lagom/Fuzzers/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/Lagom/Fuzzers/CMakeLists.txt b/Meta/Lagom/Fuzzers/CMakeLists.txt index 6582766ad6..19e3a70d22 100644 --- a/Meta/Lagom/Fuzzers/CMakeLists.txt +++ b/Meta/Lagom/Fuzzers/CMakeLists.txt @@ -3,7 +3,7 @@ function(add_simple_fuzzer name) if (ENABLE_OSS_FUZZ) target_link_libraries(${name} - PUBLIC {$ARGN} LagomCore) + PUBLIC ${ARGN} LagomCore) else() target_compile_options(${name} PRIVATE $<$:-g -O1 -fsanitize=fuzzer>