This is an automated email from Gerrit. "Antonio Borneo <borneo.anto...@gmail.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8682
-- gerrit commit 5cc915fed5164b1e107016680adf7d5c47565e92 Author: Antonio Borneo <borneo.anto...@gmail.com> Date: Tue Dec 31 10:38:28 2024 +0100 configure: fix dependency of bitbang from dummy adapter The commit bb2fc63357a0 ("configure.ac: enable the Dummy adapter by default") breaks the building dependency between bitbang code and dummy adapter. Fix it. Change-Id: I47587ef61d6b57b2547f6c2600d8404cad87f584 Signed-off-by: Antonio Borneo <borneo.anto...@gmail.com> Fixes: bb2fc63357a0 ("configure.ac: enable the Dummy adapter by default") diff --git a/configure.ac b/configure.ac index b353bced70..156811759b 100644 --- a/configure.ac +++ b/configure.ac @@ -513,7 +513,7 @@ AS_IF([test "x$build_dmem" = "xyes"], [ AC_DEFINE([BUILD_DMEM], [0], [0 if you don't want to debug via Direct Mem.]) ]) -AS_IF([test "x$ADAPTER_VAR([dummy])" = "xyes"], [ +AS_IF([test "x$enable_dummy" != "xno"], [ build_bitbang=yes ]) --