From: Jim Meyering Date: Thu, 22 Feb 2007 22:37:19 +0000 (+0100) Subject: Merge in a change from some other incarnation of this file (gzip?) X-Git-Tag: COREUTILS-6_8~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=93f9b9be84570d9899a8a61e56f773bf4eb87290;p=thirdparty%2Fcoreutils.git Merge in a change from some other incarnation of this file (gzip?) * bootstrap (gnulib_tool): Skip get_translations if there is no po/ dir. --- diff --git a/ChangeLog b/ChangeLog index 938ffb22c1..2c9248d688 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-02-22 Jim Meyering + Merge in a change from some other incarnation of this file (gzip?) + * bootstrap (gnulib_tool): Skip get_translations if there is no po/ dir. + Adjust preceding change not to perform an unaligned access. * src/copy.c (copy_reg): Undo previous change. Instead, make it clearer that we're using a single-byte sentinel, and diff --git a/bootstrap b/bootstrap index 7e9ababf9a..bf94f9b0f9 100755 --- a/bootstrap +++ b/bootstrap @@ -250,7 +250,9 @@ case $SKIP_PO in WGET_COMMAND='';; esac - get_translations po $package || exit + if test -d po; then + get_translations po $package || exit + fi if test -d runtime-po; then get_translations runtime-po $package-runtime || exit