3
0
forked from pool/coreutils
OBS User unknown 2007-01-09 16:42:56 +00:00 committed by Git OBS Bridge
parent 06a642b9ff
commit 1982ec1216
3 changed files with 22 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jan 9 13:08:01 CET 2007 - schwab@suse.de
- Fix localized month sorting [#231790].
-------------------------------------------------------------------
Wed Dec 13 13:27:36 CET 2006 - schwab@suse.de

View File

@ -1,7 +1,7 @@
#
# spec file for package coreutils (Version 6.7)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
@ -21,7 +21,7 @@ Obsoletes: libselinux <= 1.23.11-3 libselinux-32bit >= 9 libselinux-64bit =
Autoreqprov: on
PreReq: %{install_info_prereq}
Version: 6.7
Release: 3
Release: 6
Summary: GNU Core Utilities
Source: coreutils-%{version}.tar.bz2
Source1: su.pamd
@ -36,6 +36,7 @@ Patch7: coreutils-5.0-pam-env.patch
Patch8: coreutils-sysinfo.diff
Patch9: acl-test.diff
Patch10: getcwd.diff
Patch11: i18n-monthsort.diff
Patch16: invalid-ids.diff
Patch17: no-no.diff
Patch20: coreutils-5.3.0-pie.diff
@ -103,6 +104,7 @@ Authors:
%patch8 -p1
%patch9 -p1
%patch10
%patch11
%patch16 -p1
%patch17
%patch20
@ -171,6 +173,8 @@ rm -rf $RPM_BUILD_ROOT
%dir %{_prefix}/share/locale/*/LC_TIME
%changelog -n coreutils
* Tue Jan 09 2007 - schwab@suse.de
- Fix localized month sorting [#231790].
* Wed Dec 13 2006 - schwab@suse.de
- Fix acl tests.
* Sat Dec 09 2006 - schwab@suse.de

11
i18n-monthsort.diff Normal file
View File

@ -0,0 +1,11 @@
--- src/sort.c
+++ src/sort.c
@@ -748,7 +748,7 @@
else
{
j += mblength;
- mblength = wcrtomb (mbc, wc, &state_wc);
+ mblength = wcrtomb (mbc, pwc, &state_wc);
assert (mblength != (size_t) 0 && mblength != (size_t) -1);
}