summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2007-08-24 22:42:25 +0200
committerJim Meyering <jim@meyering.net>2007-08-24 22:42:33 +0200
commitd71657c17b477a961fad43d706a70622f78fdf6f (patch)
tree04861092ce761ebc0236d3dd55d7b2b4f12b11ee /bootstrap
parent8f3cb068fc2240b3b0a0fbee6fea6ecf3460966c (diff)
downloadcoreutils-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-xbootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index b8a8f482d..a9efa7be9 100755
--- a/bootstrap
+++ b/bootstrap
@@ -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 &&