diff options
author | Martin-Éric Racine <q-funk@iki.fi> | 2007-07-13 12:34:45 -0600 |
---|---|---|
committer | Jordan Crouse <jordan.crouse@amd.com> | 2007-07-13 12:35:33 -0600 |
commit | bb0f0afc6c5cf849081a007af0c2d3485e87e9c4 (patch) | |
tree | 0d82f7fdbd32031c02c99d5c0ed3703d2f2e8677 /autogen.sh | |
parent | 08c26f1bda66b8ffd91e345cdd2cb29171b615b3 (diff) |
This autogen.sh implements ChangeLog generation from the git commit
log. It also calls the correct Makefile macro to clean up after
maintainer configuration, instead of cleaning up by hand.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -11,10 +11,10 @@ rm -rf config.guess config.sub ltmain.sh autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/configure --enable-maintainer-mode "$@" +$srcdir/missing --run git-log --stat | fmt --split-only 1> ChangeLog 2>/dev/null -make distclean +$srcdir/configure --enable-maintainer-mode "$@" -rm -rf autom4te.cache +make maintainer-clean #EOF |