Skip to content
Success

#20637 (Feb 25, 2026, 4:53:13 PM)

Started 5 hr 27 min ago
Took 1 min 51 sec on build5-deb12build-ansible

Started by upstream project gerrit-libosmocore build number 2365
originally caused by:

This run spent:

  • 5.2 sec waiting;
  • 1 min 51 sec build duration;
  • 1 min 56 sec total from scheduled to completion.
Revision: 6d38b29baa8a200723563256bb5b9e21ba0af1bc
Repository: $GERRIT_REPO_URL
  • master
fix --disable-log-macros

Before 9197c1ac, the AC_ARG_ENABLE(log_macros, ...)
action was hardcoded to [log_macros="yes"], so *any*
use of the flag --enable-log-macros or --disable-log-macros
would set log_macros="yes" -> AC_DEFINE([LIBOSMOCORE_NO_LOGGING]).

The commit changed this to the standard [log_macros=$enableval], but
broke the conditional test, so
- AC_ARG_ENABLE sets $enableval to "no" for --disable-* flags
-> log_macros is now "no"
-> test fails
-> LIBOSMOCORE_NO_LOGGING is never defined...

The opposite of what it should do...

Change-Id: I809ab2f61e72428ba21061055296eb83d6d710ab
ewild at