summaryrefslogtreecommitdiff
path: root/maintainer/maint.mk
diff options
context:
space:
mode:
Diffstat (limited to 'maintainer/maint.mk')
-rw-r--r--maintainer/maint.mk16
1 files changed, 7 insertions, 9 deletions
diff --git a/maintainer/maint.mk b/maintainer/maint.mk
index 1c2cb9629..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) | \
@@ -331,22 +331,20 @@ CLEANFILES += announcement
git-sv-host = git.savannah.gnu.org
# Some repositories we sync files from.
-SV_CVS = 'http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/'
-SV_GIT_CF = 'http://$(git-sv-host)/gitweb/?p=config.git;a=blob_plain;hb=HEAD;f='
-SV_GIT_AC = 'http://$(git-sv-host)/gitweb/?p=autoconf.git;a=blob_plain;hb=HEAD;f='
-SV_GIT_GL = 'http://$(git-sv-host)/gitweb/?p=gnulib.git;a=blob_plain;hb=HEAD;f='
+SV_GIT_CF = 'https://$(git-sv-host)/gitweb/?p=config.git;a=blob_plain;hb=HEAD;f='
+SV_GIT_GL = 'https://$(git-sv-host)/gitweb/?p=gnulib.git;a=blob_plain;hb=HEAD;f='
# Files that we fetch and which we compare against.
# Note that the 'lib/COPYING' file must still be synced by hand.
FETCHFILES = \
$(SV_GIT_CF)config.guess \
$(SV_GIT_CF)config.sub \
- $(SV_CVS)texinfo/texinfo/doc/texinfo.tex \
- $(SV_CVS)texinfo/texinfo/util/gendocs.sh \
- $(SV_CVS)texinfo/texinfo/util/gendocs_template \
+ $(SV_GIT_GL)build-aux/texinfo.tex \
+ $(SV_GIT_GL)build-aux/gendocs.sh \
$(SV_GIT_GL)build-aux/gitlog-to-changelog \
$(SV_GIT_GL)build-aux/gnupload \
$(SV_GIT_GL)build-aux/update-copyright \
+ $(SV_GIT_GL)doc/gendocs_template \
$(SV_GIT_GL)doc/INSTALL
# Fetch the latest versions of few scripts and files we care about.
@@ -489,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/!' \