Skip to content

Commit 1236b2a

Browse files
committed
fix(build): Correct configure flag so debug builds are not release mode
1 parent 8cff649 commit 1236b2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-aux/ax_rust_boilerplate.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AC_DEFUN_ONCE([AX_RUST_BOILERPLATE], [
66
AC_ARG_ENABLE(debug,
77
AS_HELP_STRING([--enable-debug],
88
[Build Rust code with debugging information]))
9-
AM_CONDITIONAL([DEBUG_RELEASE], [test "x$debug_release" = "xyes"])
9+
AM_CONDITIONAL([DEBUG_RELEASE], [test "x$enable_debug" = "xyes"])
1010
1111
AC_ARG_ENABLE([dependency-checks],
1212
AS_HELP_STRING([--disable-dependency-checks],

0 commit comments

Comments
 (0)