summaryrefslogtreecommitdiff
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
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.
-rw-r--r--ChangeLog4
-rwxr-xr-xbootstrap2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c52ba9a7b..19fb92cab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2007-08-24 Jim Meyering <jim@meyering.net>
+ bootstrap: when fetching .po files, do not remove .gmo files.
+ * bootstrap (get_translations): Don't remove *.gmo files!
+ They can be expensive to regenerate.
+
Create .gitignore and/or .cvsignore from scratch, if absent.
This is in preparation for my removing those files from version
control in the directories managed by gnulib-tool.
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 &&