Minor tweaks for 3.81rc2.
authorPaul Smith <psmith@gnu.org>
Fri, 17 Mar 2006 18:55:26 +0000 (18:55 +0000)
committerPaul Smith <psmith@gnu.org>
Fri, 17 Mar 2006 18:55:26 +0000 (18:55 +0000)
ChangeLog
README.cvs
maintMakefile

index 6fc7aef368ceceeddad19d0685e487a30dabff10..026de24de1a11a717ee74176bd771facbfd4c6e8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-17  Paul D. Smith  <psmith@gnu.org>
+
+       * maintMakefile (do-po-update): Rewrite this rule to clean up and
+       allow multiple concurrent runs.
+       Patch from Joseph Myers <joseph@codesourcery.com>
+
 2006-03-17  Boris Kolpackov  <boris@kolpackov.net>
 
        * dep.h (struct dep): Add the stem field.
index 7ce2cec5c976900566db3f1274646e26a28743e3..97e92596274494cf57e976b5dd09cfc78f6a7317 100644 (file)
@@ -49,7 +49,7 @@ After checking out the code, you will need to perform these steps to get
 to the point where you can run "make".
 
 
- 1) $ autoreconf -i -s
+ 1) $ autoreconf -i
 
     This rebuilds all the things that need rebuilding, installing
     missing files as symbolic links.
@@ -133,10 +133,12 @@ prerequisites are available of course).
 This list is eminently suitable for a quick swipe o' the mouse and a
 swift click o' mouse-2 into an xterm.  Go for it!
 
-
-autoreconf -i -s
+autoreconf -i
 ./configure
 make update
 make
 make check
-make distcheck
+
+Or, all-in-one:
+
+autoreconf -i && ./configure && make update && make && make check
index 60d1367c20218502a81588b38b7fc5cecdfc0ca0..2bafbc21ac9a80211df6e83d2895a2dd8637b006 100644 (file)
@@ -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