projects
/
oweals
/
tinc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
120e056
)
Remove "release-" from displayed git version.
author
Guus Sliepen
<guus@tinc-vpn.org>
Tue, 5 May 2015 21:03:41 +0000
(23:03 +0200)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Tue, 5 May 2015 21:03:41 +0000
(23:03 +0200)
Also make sure that version_git.h is only written to if the "git
describe" command succeeds.
src/Makefile.am
patch
|
blob
|
history
diff --git
a/src/Makefile.am
b/src/Makefile.am
index cc512b1c0cc0d87810beb62d6c67c016a637bdab..3b9843af8c1d07fbc568f549c8bebb6957ab81fb 100644
(file)
--- a/
src/Makefile.am
+++ b/
src/Makefile.am
@@
-6,7
+6,7
@@
sbin_PROGRAMS = tincd tinc sptps_test sptps_keypair
.PHONY: version.c version_git.h
version_git.h:
echo >$@
- -
GIT_DESCRIPTION="`cd $(@D) && git describe`" && echo "#define GIT_DESCRIPTION \"$$GIT_DESCRIPTION\""
>$@
+ -
git describe && echo '#define GIT_DESCRIPTION "'`git describe | sed 's/release-//'`'"'
>$@
version.c: version_git.h
if LINUX