bootstrap: work also when there are no .po files in po/
authorJim Meyering <meyering@redhat.com>
Mon, 28 Jul 2008 18:40:23 +0000 (20:40 +0200)
committerJim Meyering <meyering@redhat.com>
Mon, 28 Jul 2008 18:40:23 +0000 (20:40 +0200)
* build-aux/bootstrap (update_po_files): Complete the change
that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.

ChangeLog
build-aux/bootstrap

index e3623b7..a84039a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 9a85762..5295ecc 100755 (executable)
@@ -273,7 +273,7 @@ update_po_files() {
 
   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"