Module: kamailio Branch: master Commit: 0d27659aff3a6d5b3e773ab2bd4acee87e3d7823 URL: https://github.com/kamailio/kamailio/commit/0d27659aff3a6d5b3e773ab2bd4acee87e3d7823
Author: Morten Tryfoss <[email protected]> Committer: Henning Westerholt <[email protected]> Date: 2026-06-22T17:10:33+02:00 cmake: fix build race condition on machine with many cores --- Modified: cmake/dbschema.cmake --- Diff: https://github.com/kamailio/kamailio/commit/0d27659aff3a6d5b3e773ab2bd4acee87e3d7823.diff Patch: https://github.com/kamailio/kamailio/commit/0d27659aff3a6d5b3e773ab2bd4acee87e3d7823.patch --- diff --git a/cmake/dbschema.cmake b/cmake/dbschema.cmake index 5e2b745a0c6..cc2355f1029 100644 --- a/cmake/dbschema.cmake +++ b/cmake/dbschema.cmake @@ -246,10 +246,11 @@ if(XSLTPROC_EXECUTABLE ) add_custom_target(dbschema_xhttp_pi) add_dependencies(dbschema_xhttp_pi dbschema_pi_framework_table dbschema_pi_framework_mod) + add_dependencies(dbschema_pi_framework_mod dbschema_pi_framework_table) add_custom_target(dbschema_xhttp_pi_clean) add_dependencies( - dbschema_xhttp_pi dbschema_pi_framework_table_clean dbschema_pi_framework_mod_clean + dbschema_xhttp_pi_clean dbschema_pi_framework_table_clean dbschema_pi_framework_mod_clean ) add_dependencies(dbschema dbschema_pi_framework_table dbschema_pi_framework_mod) _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
