# HG changeset patch # User Jim Meyering # Date 1217270423 -7200 # Node ID f8e1f2b7f75e8351e72bd07aea9f31fbe33f98c0 # Parent 9f20b40ea114bb11eb4fb367f587dd605dd4c88c 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. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-07-28 Jim Meyering + + 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 * users.txt: Add zile. diff --git a/build-aux/bootstrap b/build-aux/bootstrap --- a/build-aux/bootstrap +++ b/build-aux/bootstrap @@ -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"