Skip to content

Commit ad8b1dd

Browse files
author
smeyer
committed
tweak r88109
git-svn-id: https://svn.r-project.org/R/trunk@88110 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent bf30fd6 commit ad8b1dd

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

po/Makefile.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ update-RGui:
5858

5959
## en@quot has to be done in a UTF-8 locale
6060
update-pkg-po:
61-
@for pkg in $(R_PKGS_PO); do \
62-
$(ECHO) "updating translations for $${pkg}"; \
63-
$(ECHO) "options(warn=2); tools:::update_pkg_po(\"$(top_srcdir)/src/library/$${pkg}\", mergeOpts=\"--no-wrap\")" | \
64-
R_DEFAULT_PACKAGES=NULL LC_COLLATE=C $(R_EXE) || exit 1; \
65-
done
61+
@fail=; for pkg in $(R_PKGS_PO); do \
62+
$(ECHO); $(ECHO) "updating translations for $${pkg}"; \
63+
$(ECHO) "options(warn=2); tools:::update_pkg_po(\"$(top_srcdir)/src/library/$${pkg}\", mergeOpts=\"--no-wrap\")" | \
64+
R_DEFAULT_PACKAGES=NULL LC_COLLATE=C $(R_EXE) || fail="$${fail} $${pkg}"; \
65+
done; if test -n "$${fail}"; then $(ECHO) "FAILED:$${fail}"; exit 1; fi

po/Makefile.win

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ update-RGui:
1616

1717
## en@quot has to be done in a UTF-8 locale
1818
update-pkg-po:
19-
@for pkg in $(R_PKGS_PO); do \
20-
$(ECHO) "updating translations for $${pkg}"; \
21-
$(ECHO) "options(warn=2); tools:::update_pkg_po(\"$(top_srcdir)/src/library/$${pkg}\", mergeOpts=\"--no-wrap\")" | \
22-
R_DEFAULT_PACKAGES=NULL LC_COLLATE=C $(R_EXE) || exit 1; \
23-
done
19+
@fail=; for pkg in $(R_PKGS_PO); do \
20+
$(ECHO); $(ECHO) "updating translations for $${pkg}"; \
21+
$(ECHO) "options(warn=2); tools:::update_pkg_po(\"$(top_srcdir)/src/library/$${pkg}\", mergeOpts=\"--no-wrap\")" | \
22+
R_DEFAULT_PACKAGES=NULL LC_COLLATE=C $(R_EXE) || fail="$${fail} $${pkg}"; \
23+
done; if test -n "$${fail}"; then $(ECHO) "FAILED:$${fail}"; exit 1; fi

0 commit comments

Comments
 (0)