packages: binutils/binutils.spec, binutils/binutils-git.patch (NEW) - rel 4...

arekm arekm at pld-linux.org
Sun Jul 3 08:18:44 CEST 2011


Author: arekm                        Date: Sun Jul  3 06:18:44 2011 GMT
Module: packages                      Tag: HEAD
---- Log message:
- rel 4; make gold ignore -Lfile

---- Files affected:
packages/binutils:
   binutils.spec (1.346 -> 1.347) , binutils-git.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: packages/binutils/binutils.spec
diff -u packages/binutils/binutils.spec:1.346 packages/binutils/binutils.spec:1.347
--- packages/binutils/binutils.spec:1.346	Mon Jun 27 20:25:05 2011
+++ packages/binutils/binutils.spec	Sun Jul  3 08:18:39 2011
@@ -18,7 +18,7 @@
 Summary(uk.UTF-8):	Набір інструментів GNU для побудови виконуваних програм
 Name:		binutils
 Version:	2.21.52.0.2
-Release:	3
+Release:	4
 Epoch:		3
 License:	GPL v3+
 Group:		Development/Tools
@@ -35,6 +35,7 @@
 Patch7:		%{name}-libtool-m.patch
 Patch8:		%{name}-build-id.patch
 Patch9:		%{name}-tooldir.patch
+Patch10:	%{name}-git.patch
 URL:		http://sources.redhat.com/binutils/
 BuildRequires:	autoconf >= 2.64
 BuildRequires:	automake >= 1:1.11
@@ -155,6 +156,7 @@
 %patch7 -p1
 %patch8 -p0
 %patch9 -p1
+%patch10 -p1
 
 # file contains hacks for ac 2.59 only
 %{__rm} config/override.m4
@@ -353,6 +355,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.347  2011/07/03 06:18:39  arekm
+- rel 4; make gold ignore -Lfile
+
 Revision 1.346  2011/06/27 18:25:05  arekm
 - rel 3; enable plugins
 

================================================================
Index: packages/binutils/binutils-git.patch
diff -u /dev/null packages/binutils/binutils-git.patch:1.1
--- /dev/null	Sun Jul  3 08:18:44 2011
+++ packages/binutils/binutils-git.patch	Sun Jul  3 08:18:39 2011
@@ -0,0 +1,22 @@
+commit 561198ab2fa5a09661e1570d1d463d8079814432
+Author: Ian Lance Taylor <ian at airs.com>
+Date:   Sun Jul 3 04:16:13 2011 +0000
+
+    	* dirsearch.cc (Dir_cache::read_files): Ignore ENOTDIR errors.
+
+diff --git a/gold/dirsearch.cc b/gold/dirsearch.cc
+index a149db5..1ae2055 100644
+--- a/gold/dirsearch.cc
++++ b/gold/dirsearch.cc
+@@ -66,8 +66,9 @@ Dir_cache::read_files()
+   DIR* d = opendir(this->dirname_);
+   if (d == NULL)
+     {
+-      // We ignore directories which do not exist.
+-      if (errno != ENOENT)
++      // We ignore directories which do not exist or are actually file
++      // names.
++      if (errno != ENOENT && errno != ENOTDIR)
+ 	gold::gold_error(_("%s: can not read directory: %s"),
+ 			 this->dirname_, strerror(errno));
+       return;
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/binutils/binutils.spec?r1=1.346&r2=1.347&f=u



More information about the pld-cvs-commit mailing list