changeset 29982:0ea6fa49964d

bootstrap: work also when there are no .po files in po/ * build-aux/bootstrap (update_po_files): Complete the change that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
author Jim Meyering <meyering@redhat.com>
date Mon, 28 Jul 2008 20:40:23 +0200
parents 5d0e44b61d71
children 8dfb000624c2
files ChangeLog build-aux/bootstrap
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Jul 28 07:27:55 2008 -0700
+++ b/ChangeLog	Mon Jul 28 20:40:23 2008 +0200
@@ -1,3 +1,9 @@
+2008-07-28  Jim Meyering  <meyering@redhat.com>
+
+	bootstrap: work also when there are no .po files in po/
+	* build-aux/bootstrap (update_po_files): Complete the change
+	that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
+
 2008-07-27  Jim Meyering  <meyering@redhat.com>
 
 	* users.txt: Add zile.
--- a/build-aux/bootstrap	Mon Jul 28 07:27:55 2008 -0700
+++ b/build-aux/bootstrap	Mon Jul 28 20:40:23 2008 +0200
@@ -273,7 +273,7 @@
 
   langs=`cd $ref_po_dir && echo *.po|sed 's/\.po//g'`
   test "$langs" = '*' && langs=x
-  for po in `cd $ref_po_dir && echo *.po|sed 's/\.po//g'`; do
+  for po in $langs; do
     case $po in x) continue;; esac
     new_po="$ref_po_dir/$po.po"
     cksum_file="$ref_po_dir/$po.s1"