build: Install ChangeLog.
* ChangeLog: New file. * install.sh: Regenerate it, install it.
This commit is contained in:
parent
4072046a2b
commit
9e1c618b00
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -44,7 +44,6 @@
|
|||
/.config.make
|
||||
/.store
|
||||
/.tarball-version
|
||||
/ChangeLog
|
||||
|
||||
#keep this: bootstrap
|
||||
#/mes.mes
|
||||
|
|
4
ChangeLog
Normal file
4
ChangeLog
Normal file
|
@ -0,0 +1,4 @@
|
|||
Normally a ChangeLog is generated at "make dist" time and available in
|
||||
source tarballs.
|
||||
|
||||
If not, see the Git commit log at <http://gitlab.com/janneke/mes/>.
|
|
@ -54,6 +54,10 @@ ifdef GUILE_TOOLS
|
|||
export GUILE_TOOLS
|
||||
endif
|
||||
|
||||
ifdef PERL
|
||||
export PERL
|
||||
endif
|
||||
|
||||
ifdef TCC
|
||||
export TCC
|
||||
endif
|
||||
|
|
|
@ -36,10 +36,18 @@ chmod -w+x $DESTDIR$bindir/diff.scm
|
|||
|
||||
|
||||
mkdir -p $docdir
|
||||
|
||||
if [ -n "$PERL" -a -n "$GIT" ]\
|
||||
&& $PERL -v > /dev/null\
|
||||
&& $GIT --status > /dev/null; then
|
||||
$PERL build-aux/gitlog-to-changelog --srcdir=. > ChangeLog
|
||||
fi
|
||||
|
||||
cp\
|
||||
AUTHORS\
|
||||
BOOTSTRAP\
|
||||
COPYING\
|
||||
ChangeLog\
|
||||
HACKING\
|
||||
INSTALL\
|
||||
NEWS\
|
||||
|
|
Loading…
Reference in a new issue