Skip to content

Commit f430add

Browse files
singalsulgirdwood
authored andcommitted
Tools: Fuzzer: Do not use illegal BUILD_COMMAND in CMakeLists.txt
This patch removes the incorrect usage of BUILD_COMMAND. Having it set to "cmake" caused the cmake usage help text output to be shown only and caused the ExternalProject_Add command to believe the libsof_tplg_parser.so was built. The build for the library happened only because the next install step performed the compilation. With this fix the default build command is used instead. There's no need to define it here. Fixes thesofproject#2656 Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com> Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent 4d48f86 commit f430add

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

tools/fuzzer/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ ExternalProject_Add(sof_parser_ep
2323
BINARY_DIR "${PROJECT_BINARY_DIR}/sof_parser/build"
2424
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${parser_install_dir}
2525
-DCMAKE_VERBOSE_MAKEFILE=${CMAKE_VERBOSE_MAKEFILE}
26-
BUILD_COMMAND ${CMAKE_COMMAND}
2726
BUILD_ALWAYS 1
2827
BUILD_BYPRODUCTS "${parser_install_dir}/lib/libsof_tplg_parser.so"
2928
)

0 commit comments

Comments
 (0)