Skip to content

Commit

Permalink
fix(build): Correct configure flag so debug builds are not release mode
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Mar 12, 2024
1 parent 8cff649 commit 1236b2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-aux/ax_rust_boilerplate.m4
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ AC_DEFUN_ONCE([AX_RUST_BOILERPLATE], [
AC_ARG_ENABLE(debug,
AS_HELP_STRING([--enable-debug],
[Build Rust code with debugging information]))
AM_CONDITIONAL([DEBUG_RELEASE], [test "x$debug_release" = "xyes"])
AM_CONDITIONAL([DEBUG_RELEASE], [test "x$enable_debug" = "xyes"])
AC_ARG_ENABLE([dependency-checks],
AS_HELP_STRING([--disable-dependency-checks],
Expand Down

0 comments on commit 1236b2a

Please sign in to comment.