This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.21-356-g6c30792


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  6c307927ac5c5c3e15774a1c63c9d8c41f3a8678 (commit)
      from  c3cc2cf35a18474ce76e128861816bab10bec5c1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=6c307927ac5c5c3e15774a1c63c9d8c41f3a8678

commit 6c307927ac5c5c3e15774a1c63c9d8c41f3a8678
Author: Carlos O'Donell <carlos@systemhalted.org>
Date:   Sat May 16 02:14:49 2015 -0400

    Fail locale installation if localedef fails.
    
    If any locale fails to compile then the installation
    of locales via `make localedata/install-locales`
    also fails.

diff --git a/localedata/ChangeLog b/localedata/ChangeLog
index 8b7a414..1f2577d 100644
--- a/localedata/ChangeLog
+++ b/localedata/ChangeLog
@@ -1,4 +1,8 @@
-2015-05-12  Marko Myllynen  <myllynen@redhat.com>
+2015-05-16  Carlos O'Donell  <carlos@redhat.com>
+
+	* Makefile (INSTALL-SUPPORTED-LOCALES): Fail if localedef fails.
+
+2015-05-16  Marko Myllynen  <myllynen@redhat.com>
 
 	* locales/bo_CN (LC_NAME): Fix compilation.
 	* locales/bo_IN (LC_NAME): Likewise.
diff --git a/localedata/Makefile b/localedata/Makefile
index 03ec98c..305c87f 100644
--- a/localedata/Makefile
+++ b/localedata/Makefile
@@ -212,8 +212,8 @@ $(INSTALL-SUPPORTED-LOCALES): install-locales-dir
 	input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \
 	$(LOCALEDEF) --alias-file=../intl/locale.alias \
 		     -i locales/$$input -c -f charmaps/$$charset \
-		     $(addprefix --prefix=,$(install_root)) $$locale; \
-	echo ' done'; \
+		     $(addprefix --prefix=,$(install_root)) $$locale \
+	&& echo ' done'; \
 
 tst-setlocale-ENV = LC_ALL=ja_JP.EUC-JP
 tst-wctype-ENV = LC_ALL=ja_JP.EUC-JP

-----------------------------------------------------------------------

Summary of changes:
 localedata/ChangeLog |    6 +++++-
 localedata/Makefile  |    4 ++--
 2 files changed, 7 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]