Skip to content

Commit

Permalink
No point in shortening git describe string, so just show it all.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcrayne committed Aug 31, 2015
1 parent 6d0020e commit 1ff035a
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
Expand Up @@ -191,7 +191,7 @@ ChangeLog:
(test -d .git && git shortlog `git describe | sed 's/^\([^-]*\).*/\1/'`..HEAD > $@ ) || (test -d _darcs && darcs changes --from-tag . > $@)

src/data/shortchange.txt: ChangeLog
(test -d .git && git describe | sed 's`\([^-]\+-[^-]*\).*`\1`' | tr -d '\n' > $@ ) || (test -d _darcs && echo -n "`sed -ne 's/^ tagged \(.*\)/\1/p' $<`-`grep -c '^ \*' $<`" > $@)
(test -d .git && git describe | tr -d '\n' > $@ ) || (test -d _darcs && echo -n "`sed -ne 's/^ tagged \(.*\)/\1/p' $<`-`grep -c '^ \*' $<`" > $@)

BINDISTDIR=$(PACKAGE)-$(VERSION)-$(host)

Expand Down

0 comments on commit 1ff035a

Please sign in to comment.