diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rwxr-xr-x | bootstrap | 11 |
2 files changed, 2 insertions, 11 deletions
@@ -1,5 +1,7 @@ 2007-09-02 Jim Meyering <jim@meyering.net> + * bootstrap (WGET_COMMAND): Remove code to set this variable. + Ensure that $(VERSION) is up to date for dist-related targets. * GNUmakefile: Arrange to rerun autoconf, if the version reported by git-version-gen doesn't match $(VERSION), but only for dist targets. @@ -293,17 +293,6 @@ update_po_files() { case $SKIP_PO in '') - case `wget --help` in - *'--no-cache'*) - WGET_COMMAND='wget -nv --no-cache';; - *'--cache=on/off'*) - WGET_COMMAND='wget -nv --cache=off';; - *'--non-verbose'*) - WGET_COMMAND='wget -nv';; - *) - WGET_COMMAND='';; - esac - if test -d po; then update_po_files po $package || exit fi |