I noticed that ```kamailio -I``` and ```kamailio -V``` do not give git version hash anymore.
This commit fixes at least kamailio -I and -V output, I think.
I don't know / remember if further adjustment is needed for other REPO_ constants.
# Before
``` #define REPO_VER "" #define REPO_HASH "unknown" #define REPO_STATE "" ``` ``` $ src/kamailio -I|grep Source Source code revision ID: unknown ```
# After ``` #define REPO_VER "5c48b2" #define REPO_HASH "5c48b2" #define REPO_STATE "" ``` ``` $ src/kamailio -I|grep Source Source code revision ID: 5c48b2 ``` You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1560
-- Commit Summary --
* src/Makefile: adjust Makefile to populate REPO_ variables in autover.h again
-- File Changes --
M src/Makefile (4)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1560.patch https://github.com/kamailio/kamailio/pull/1560.diff
Merged #1560.
Thank you!