rpms/coreutils/devel coreutils.spec,1.173,1.174

Tim Waugh (twaugh) fedora-extras-commits at redhat.com
Wed Jul 4 18:15:22 UTC 2007


Author: twaugh

Update of /cvs/pkgs/rpms/coreutils/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv12915

Modified Files:
	coreutils.spec 
Log Message:
* Wed Jul  4 2007 Tim Waugh <twaugh at redhat.com> 6.9-4
- Use hard links instead of symbolic links for LC_TIME files (bug #246729).



Index: coreutils.spec
===================================================================
RCS file: /cvs/pkgs/rpms/coreutils/devel/coreutils.spec,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- coreutils.spec	13 Jun 2007 14:13:50 -0000	1.173
+++ coreutils.spec	4 Jul 2007 18:14:47 -0000	1.174
@@ -1,7 +1,7 @@
 Summary: The GNU core utilities: a set of tools commonly used in shell scripts
 Name:    coreutils
 Version: 6.9
-Release: 3%{?dist}
+Release: 4%{?dist}
 License: GPL
 Group:   System Environment/Base
 Url:     http://www.gnu.org/software/coreutils/
@@ -195,7 +195,16 @@
 # Compress ChangeLogs from before the fileutils/textutils/etc merge
 bzip2 -f9 old/*/C*
 
-%find_lang %name
+# Use hard links instead of symbolic links for LC_TIME files (bug #246729).
+find %{buildroot}%{_datadir}/locale -type l | \
+(while read link
+ do
+   target=$(readlink "$link")
+   rm -f "$link"
+   ln "$(dirname "$link")/$target" "$link"
+ done)
+
+%find_lang %name --all-name
 
 # (sb) Deal with Installed (but unpackaged) file(s) found
 rm -f $RPM_BUILD_ROOT%{_infodir}/dir
@@ -271,6 +280,9 @@
 /sbin/runuser
 
 %changelog
+* Wed Jul  4 2007 Tim Waugh <twaugh at redhat.com> 6.9-4
+- Use hard links instead of symbolic links for LC_TIME files (bug #246729).
+
 * Wed Jun 13 2007 Tim Waugh <twaugh at redhat.com> 6.9-3
 - Fixed 'ls -x' output (bug #240298).
 - Disambiguate futimens() from the glibc implementation (bug #242321).




More information about the fedora-extras-commits mailing list