summaryrefslogtreecommitdiff
path: root/maintMakefile
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2020-05-03 13:23:41 -0400
committerPaul Smith <psmith@gnu.org>2020-05-03 14:23:56 -0400
commita015d1f8225004222851b02fe915e2ff40452d25 (patch)
tree68c54ce30b7b3ef9d17744322afd8b167e7ed479 /maintMakefile
parentc604e53a4578107fd7c421da79d515144bcf0440 (diff)
downloadmake-git-a015d1f8225004222851b02fe915e2ff40452d25.tar.gz
* maintMakefile: Clean up output
Diffstat (limited to 'maintMakefile')
-rw-r--r--maintMakefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/maintMakefile b/maintMakefile
index 5b30c257..119a901c 100644
--- a/maintMakefile
+++ b/maintMakefile
@@ -210,20 +210,20 @@ target = $(patsubst get-%,%,$@)
config-url = $(git-url)/config.git/plain/$(patsubst get-build-aux/%,%,$@)
get-build-aux/config.guess get-build-aux/config.sub:
- @echo $(WGET) $(config-url) -O $(target) \
- && $(WGET) $(config-url) -O $(target).t \
+ @echo Retrieving $(target) from $(config-url)
+ $(WGET) $(config-url) -O $(target).t \
&& $(move_if_change)
gnulib-url = $(git-url)/gnulib.git/plain/build-aux/$(patsubst get-build-aux/%,%,$@)
get-build-aux/texinfo.tex:
- @echo $(WGET) $(gnulib-url) -O $(target) \
- && $(WGET) $(gnulib-url) -O $(target).t \
+ @echo Retrieving $(target) from $(gnulib-url)
+ $(WGET) $(gnulib-url) -O $(target).t \
&& $(move_if_change)
gnustandards-url = $(cvs-url)/gnustandards/gnustandards/$(patsubst get-doc/%,%,$@)
get-doc/make-stds.texi get-doc/fdl.texi:
- @echo $(WGET) $(gnustandards-url) -O $(target) \
- && $(WGET) $(gnustandards-url) -O $(target).t \
+ @echo Retrieving $(target) from $(gnustandards-url)
+ $(WGET) $(gnustandards-url) -O $(target).t \
&& $(move_if_change)