summaryrefslogtreecommitdiffstats
path: root/git-buildmsg/README.git-buildmsg
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2007-11-10 17:06:12 +0100
committerHans Ulrich Niedermann <hun@n-dimensional.de>2007-11-10 17:06:12 +0100
commit2319e65dbffeb1c6654239a58a4e17dde0380a5f (patch)
tree6dded019ca936b2ea3f25336abb35cf03bbb30b9 /git-buildmsg/README.git-buildmsg
parentff93e51a4ae4f8fefeb7a49eaafc8ba4ff2c52e2 (diff)
downloadndim-git-utils-2319e65dbffeb1c6654239a58a4e17dde0380a5f.tar.gz
ndim-git-utils-2319e65dbffeb1c6654239a58a4e17dde0380a5f.tar.xz
ndim-git-utils-2319e65dbffeb1c6654239a58a4e17dde0380a5f.zip
Demonstrate "dist-of-git-commit" message
It is certainly possible to do that in a cleaner way with less code, but at least this works.
Diffstat (limited to 'git-buildmsg/README.git-buildmsg')
-rw-r--r--git-buildmsg/README.git-buildmsg8
1 files changed, 4 insertions, 4 deletions
diff --git a/git-buildmsg/README.git-buildmsg b/git-buildmsg/README.git-buildmsg
index c95f5e7..dc9a7cd 100644
--- a/git-buildmsg/README.git-buildmsg
+++ b/git-buildmsg/README.git-buildmsg
@@ -7,12 +7,12 @@ EXTRA_DIST += git-buildmsg
---[ END top-level Makefile.am ]---
---[ BEGIN Makefile.am where information is needed ]---
-BUILT_SOURCES += git-buildmsgstamp
+BUILT_SOURCES += git-buildmsg.stamp
GIT_BUILDMSG_CMD = $(SHELL) "$(top_srcdir)/git-buildmsg"
GIT_BUILDMSG_H = git-buildmsg.h
CLEANFILES += $(GIT_BUILDMSG_H)
-git_version.stamp:
- env GIT_DIR="$(top_srcdir)/.git" $(GIT_VERSION_CMD) -s "$(top_srcdir)" -o "$(GIT_BUILDMSG_H)"
+git-buildmsg.stamp:
+ env GIT_DIR="$(top_srcdir)/.git" $(GIT_BUILDMSG_CMD) -s "$(top_srcdir)" -o "$(GIT_BUILDMSG_H)"
@if test -s "$(srcdir)/$(GIT_BUILDMSG_H)"; then \
if cmp "$(srcdir)/$(GIT_BUILDMSG_H)" "$(GIT_BUILDMSG_H)"; then :; \
else \
@@ -24,7 +24,7 @@ git_version.stamp:
bin_PROGRAMS += foo
foo_SOURCES = foo.c
-ndist_foo_SOURCES = $(GIT_BUILDMSG_H)
+nodist_foo_SOURCES = $(GIT_BUILDMSG_H)
---[ END Makefile.am where information is needed ]---