diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -11,7 +11,10 @@ rm -rf config.guess config.sub ltmain.sh autoreconf -v --install || exit 1 cd $ORIGDIR || exit $? -$srcdir/missing --run git-log --stat | fmt --split-only 1> ChangeLog 2>/dev/null +if [ -d .git ] +then + $srcdir/missing --run git-log --stat | fmt --split-only 1> ChangeLog +fi $srcdir/configure --enable-maintainer-mode "$@" |