krb5 commit [krb5-1.10]: Sort file list for msgfmt
Tom Yu
tlyu at MIT.EDU
Wed Jan 22 22:38:05 EST 2014
https://github.com/krb5/krb5/commit/902ffe4f2e10e6d3bc4f9d7507cdb741f8c24bd9
commit 902ffe4f2e10e6d3bc4f9d7507cdb741f8c24bd9
Author: Tom Yu <tlyu at mit.edu>
Date: Wed Jan 15 18:40:57 2014 -0500
Sort file list for msgfmt
The list of input files for msgfmt was unsorted find output, resulting
in excessively large changes when running "make update-po".
(cherry picked from commit f131c5a4e266d07753a1f219d35c1bf82d98c0fb)
ticket: 7848 (new)
version_fixed: 1.10.8
status: resolved
src/po/Makefile.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/po/Makefile.in b/src/po/Makefile.in
index 380674c..ac42630 100644
--- a/src/po/Makefile.in
+++ b/src/po/Makefile.in
@@ -31,7 +31,7 @@ update-po: csrcs check_et_ at COM_ERR_VERSION@
$(XGETTEXT) -kN_ -j -o $(POTFILE) $(ETSRCS)
csrcs: always
- find $(top_srcdir) -name "*.c" -print > $@
+ find $(top_srcdir) -name "*.c" -print | LC_ALL=C sort > $@
check_et_k5 check_et_intlsys:
check_et_sys:
More information about the cvs-krb5
mailing list