Options for downloading PO files were not in sync with their
build-aux/bootstrap counterpart. This commit adopt the same behavior for
these tools.
Signed-off-by: Mathieu Anquetin <mathieu@anquetin.eu>
+2014-09-05 Mathieu Anquetin <mathieu@anquetin.eu>
+
+ Trivial change.
+ * gnulib-tool: Use same options as build-aux/bootstrap to download
+ PO files.
+
2014-09-05 Mathieu Anquetin <mathieu@anquetin.eu>
Trivial change.
&& { # Prefer rsync over wget if it is available, since it consumes
# less network bandwidth, due to compression.
if type rsync 2>/dev/null | grep / > /dev/null; then
- rsync -Lrtz "${TP_RSYNC_URI}gnulib/" . && return
+ rsync --delete --exclude "*.s1" -Lrtz "${TP_RSYNC_URI}gnulib/" . && return
fi
- wget --no-verbose -r -l1 -nd -np -A.po "${TP_URL}gnulib/"
+ wget --no-verbose --mirror -nd -np -A.po -P . "${TP_URL}gnulib/"
}
)
else