Skip to content

Commit

Permalink
Support building without Git (#293)
Browse files Browse the repository at this point in the history
For example, when building inside Docker, or from tar source.
  • Loading branch information
orgads authored Jun 24, 2023
1 parent cb39982 commit e65f92c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MYVERSION=$(shell git describe --always)
MYVERSION=$(shell [ -e .git ] && git describe --always || echo 1.0.0)
INCLUDES= -I${srcdir}/deps/sofia-sip/libsofia-sip-ua/su -I${srcdir}/deps/sofia-sip/libsofia-sip-ua/nta \
-I${srcdir}/deps/sofia-sip/libsofia-sip-ua/sip -I${srcdir}/deps/sofia-sip/libsofia-sip-ua/msg \
-I${srcdir}/deps/sofia-sip/libsofia-sip-ua/url -I${srcdir}/deps/sofia-sip/libsofia-sip-ua/tport \
Expand Down

0 comments on commit e65f92c

Please sign in to comment.