diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | bootstrap | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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. @@ -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 && |