This is an automated email from Gerrit. "R. Diez <rdiez-2...@rd10.de>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9005
-- gerrit commit 53d3f6419f171f4089b05938c7d8aacd7e44a91d Author: R. Diez <rdiez-2...@rd10.de> Date: Sun Jul 20 16:31:52 2025 +0200 configure.ac: Replace $build_dmem with $enable_dmem dmem uses now the standard option-handling logic, which defines $enable_xxx instead of $build_xxx. Change-Id: I810cf09241089b1dfbec0e2183e64f20050868be Signed-off-by: R. Diez <rdiez-2...@rd10.de> diff --git a/configure.ac b/configure.ac index 453cbcfb5a..cc090e0370 100644 --- a/configure.ac +++ b/configure.ac @@ -388,7 +388,7 @@ AS_CASE([$host_os], ]) ]) - AS_IF([test "x$build_dmem" = "xyes"], [ + AS_IF([test "x$enable_dmem" != "xno"], [ AC_MSG_ERROR([dmem is only available on linux]) ]) ]) --