diff options
author | Jim Meyering <meyering@redhat.com> | 2008-07-28 11:48:22 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-07-28 20:36:52 +0200 |
commit | 662ce25d830adaa427608ea582688369c70639e2 (patch) | |
tree | 69badf5bc341e0921f1bdc3e2b7cbcdf62d935ff /bootstrap | |
parent | 0d75784da01cfab96930b691adb28a1089964b11 (diff) | |
download | coreutils-662ce25d830adaa427608ea582688369c70639e2.tar.xz |
bootstrap: work also when there are no .po files in po/
* bootstrap (update_po_files): Complete the change that I began
in 7ba2dd808232cff3ee76aaceb97f4381c3c9cde4.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |