diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2017-05-18 14:50:03 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2017-05-20 14:13:10 +0200 |
commit | 386569b29bae19855e8707d67b63f26e4f9e3e96 (patch) | |
tree | 33147baf75cade443196fc0b7ade38688cd6775c /maintainer | |
parent | 197426b349edef0882efd7bab93b8c5fd9e7da22 (diff) | |
download | automake-386569b29bae19855e8707d67b63f26e4f9e3e96.tar.gz |
bootstrap: Rename 'bootstrap.sh' to 'bootstrap'.
Follow Gnulib's convention of using either "bootstrap" or "autogen.sh"
file names for development bootstrap scripts.
* bootstrap.sh: Rename to ...
* bootstrap: ... this.
* GNUmakefile (bootstrap): Adapt.
* HACKING: Likewise.
* Makefile.am (EXTRA_DIST): Likewise.
* doc/automake.texi (Future of aclocal)
(Error required file ltmain.sh not found): Likewise.
* maintainer/maint.mk (autodiffs, update-copyright): Likewise.
Diffstat (limited to 'maintainer')
-rw-r--r-- | maintainer/maint.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/maintainer/maint.mk b/maintainer/maint.mk index 100871f42..582cfdd58 100644 --- a/maintainer/maint.mk +++ b/maintainer/maint.mk @@ -223,7 +223,7 @@ autodiffs: && cd tmp \ && $(GIT) checkout -q "$$rev" \ && echo "$@: bootstrapping $$rev" \ - && $(SHELL) ./bootstrap.sh \ + && $(SHELL) ./bootstrap \ && echo "$@: copying files from $$rev" \ && makefile_ins=`find . -name Makefile.in` \ && (tar cf - configure aclocal.m4 $$makefile_ins) | \ @@ -487,7 +487,7 @@ update-copyright: || { echo "$@: cannot get current year" >&2; exit 1; }; \ fi; \ sed -i "/^RELEASE_YEAR=/s/=.*$$/=$$current_year/" \ - bootstrap.sh configure.ac; \ + bootstrap configure.ac; \ excluded_re=`( \ for url in $(FETCHFILES); do echo "$$url"; done \ | sed -e 's!^.*/!!' -e 's!^.*=!!' -e 's!^!lib/!' \ |