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
|
/.config.make
|
||||||
/.store
|
/.store
|
||||||
/.tarball-version
|
/.tarball-version
|
||||||
/ChangeLog
|
|
||||||
|
|
||||||
#keep this: bootstrap
|
#keep this: bootstrap
|
||||||
#/mes.mes
|
#/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
|
export GUILE_TOOLS
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifdef PERL
|
||||||
|
export PERL
|
||||||
|
endif
|
||||||
|
|
||||||
ifdef TCC
|
ifdef TCC
|
||||||
export TCC
|
export TCC
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -36,10 +36,18 @@ chmod -w+x $DESTDIR$bindir/diff.scm
|
||||||
|
|
||||||
|
|
||||||
mkdir -p $docdir
|
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\
|
cp\
|
||||||
AUTHORS\
|
AUTHORS\
|
||||||
BOOTSTRAP\
|
BOOTSTRAP\
|
||||||
COPYING\
|
COPYING\
|
||||||
|
ChangeLog\
|
||||||
HACKING\
|
HACKING\
|
||||||
INSTALL\
|
INSTALL\
|
||||||
NEWS\
|
NEWS\
|
||||||
|
|
Loading…
Reference in a new issue