Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/binutils/2.20.1: 06_all_binutils-2.20-POSIX-test.patch README.history
Date: Thu, 31 May 2012 04:44:47
Message-Id: 20120531044438.B7ABE2004B@flycatcher.gentoo.org
1 vapier 12/05/31 04:44:38
2
3 Modified: README.history
4 Added: 06_all_binutils-2.20-POSIX-test.patch
5 Log:
6 add fix from upstream for POSIX test usage #417549 by Richard Yao
7
8 Revision Changes Path
9 1.8 src/patchsets/binutils/2.20.1/README.history
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.20.1/README.history?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.20.1/README.history?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.20.1/README.history?r1=1.7&r2=1.8
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/binutils/2.20.1/README.history,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- README.history 18 Sep 2011 08:59:22 -0000 1.7
22 +++ README.history 31 May 2012 04:44:38 -0000 1.8
23 @@ -1,4 +1,5 @@
24 -1.2 [pending]
25 +1.2 31 May 2012
26 + + 06_all_binutils-2.20-POSIX-test.patch
27 U 75_all_binutils-default-test-flags.patch
28
29 1.1 09 May 2010
30
31
32
33 1.1 src/patchsets/binutils/2.20.1/06_all_binutils-2.20-POSIX-test.patch
34
35 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.20.1/06_all_binutils-2.20-POSIX-test.patch?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/binutils/2.20.1/06_all_binutils-2.20-POSIX-test.patch?rev=1.1&content-type=text/plain
37
38 Index: 06_all_binutils-2.20-POSIX-test.patch
39 ===================================================================
40 taken from upstream tree
41
42 https://bugs.gentoo.org/417549
43
44 From dcc1615fd81c9a87677cd5b7138c12eab997b60f Mon Sep 17 00:00:00 2001
45 From: Paolo Bonzini <bonzini@×××.org>
46 Date: Fri, 20 Nov 2009 10:12:01 +0000
47 Subject: [PATCH] sync config with gcc:
48
49 2009-10-23 Rainer Orth <ro@×××××××××××××××××××××.DE>
50
51 * acx.m4 (ACX_CHECK_CYGWIN_CAT_WORKS): Use = with test.
52 ---
53 config/ChangeLog | 4 ++++
54 config/acx.m4 | 2 +-
55 2 files changed, 5 insertions(+), 1 deletions(-)
56
57 diff --git a/config/acx.m4 b/config/acx.m4
58 index cea08b7..b559c03 100644
59 --- a/config/acx.m4
60 +++ b/config/acx.m4
61 @@ -605,7 +605,7 @@ dnl # See binutils PR 4334 for more details.
62 AC_DEFUN([ACX_CHECK_CYGWIN_CAT_WORKS],[
63 AC_MSG_CHECKING([to see if cat works as expected])
64 echo a >cygwin-cat-check
65 -if test `cat cygwin-cat-check` == a ; then
66 +if test `cat cygwin-cat-check` = a ; then
67 rm cygwin-cat-check
68 AC_MSG_RESULT(yes)
69 else
70 --
71 1.7.8.6