diff options
author | Jim Meyering <jim@meyering.net> | 2007-08-24 22:42:25 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-08-24 22:42:33 +0200 |
commit | d71657c17b477a961fad43d706a70622f78fdf6f (patch) | |
tree | 04861092ce761ebc0236d3dd55d7b2b4f12b11ee /bootstrap | |
parent | 8f3cb068fc2240b3b0a0fbee6fea6ecf3460966c (diff) | |
download | coreutils-d71657c17b477a961fad43d706a70622f78fdf6f.tar.xz |
bootstrap: when fetching .po files, do not remove .gmo files.
* bootstrap (get_translations): Don't remove *.gmo files!
They can be expensive to regenerate.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -262,7 +262,7 @@ get_translations() { ?*) echo "$0: getting translations into $subdir for $domain..." && - (cd $subdir && rm -f dummy `ls | sed -n '/\.gmo$/p; /\.po/p'` && + (cd $subdir && rm -f dummy `ls | sed -n '/\.po/p'` && $WGET_COMMAND -r -l1 -nd -np -A.po $TP_URL/$domain) ;; esac && |