summaryrefslogtreecommitdiff
path: root/maintMakefile
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2006-03-17 18:55:26 +0000
committerPaul Smith <psmith@gnu.org>2006-03-17 18:55:26 +0000
commit29e539bad01c06a7e9655b5c33a88f05455124ad (patch)
tree9b069c4898464de8802fbd3cb185aef17d896a8b /maintMakefile
parent22886f8a74b5925030889fed52af5a8add5617d7 (diff)
downloadgunmake-29e539bad01c06a7e9655b5c33a88f05455124ad.tar.gz
Minor tweaks for 3.81rc2.
Diffstat (limited to 'maintMakefile')
-rw-r--r--maintMakefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/maintMakefile b/maintMakefile
index 60d1367..2bafbc2 100644
--- a/maintMakefile
+++ b/maintMakefile
@@ -134,11 +134,12 @@ move_if_change = if test -r $(target) && cmp -s $(target).t $(target); then \
po_repo = http://www.iro.umontreal.ca/translation/maint/$(PACKAGE)
.PHONY: do-po-update po-update
do-po-update:
- tmppo=/tmp/$(PACKAGE)-$(VERSION)-po &&\
- rm -rf $$tmppo && \
- mkdir $$tmppo && \
- (cd $$tmppo && $(WGET) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) &&\
- cp $$tmppo/*.po po
+ tmppo="/tmp/po-$(PACKAGE)-$(VERSION).$$$$" \
+ && rm -rf "$$tmppo" \
+ && mkdir "$$tmppo" \
+ && (cd "$$tmppo" \
+ && $(WGET) -r -l1 -nd --no-parent -A '*.po' $(po_repo)) \
+ && cp "$$tmppo"/*.po po && rm -rf "$$tmppo"
cd po && $(MAKE) update-po
$(MAKE) po-check