Merge in a change from some other incarnation of this file (gzip?)
authorJim Meyering <jim@meyering.net>
Thu, 22 Feb 2007 22:37:19 +0000 (23:37 +0100)
committerJim Meyering <jim@meyering.net>
Thu, 22 Feb 2007 22:37:19 +0000 (23:37 +0100)
* bootstrap (gnulib_tool): Skip get_translations if there is no po/ dir.

ChangeLog
bootstrap

index 938ffb2..2c9248d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-02-22  Jim Meyering  <jim@meyering.net>
 
+       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
index 7e9abab..bf94f9b 100755 (executable)
--- 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