Commit 4ca52ef4 authored by Raphael Defosseux's avatar Raphael Defosseux

fix(ci): PACKAGE_VERSION is missing from nr-cuup executable

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 223c6382
......@@ -155,6 +155,10 @@ int main(int argc, char **argv)
exit_fun("[SOFTMODEM] Error, configuration module init failed\n");
}
logInit();
#ifndef PACKAGE_VERSION
# define PACKAGE_VERSION "UNKNOWN-EXPERIMENTAL"
#endif
LOG_I(HW, "Version: %s\n", PACKAGE_VERSION);
set_softmodem_sighandler();
itti_init(TASK_MAX, tasks_info);
int rc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment