Gentoo Archives: gentoo-commits

From: "Nathan Phillip Brink (binki)" <binki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/irc-client/files: irc-client-2.10.3_p7-amd64-chost.patch
Date: Fri, 02 Dec 2011 01:14:46
Message-Id: 20111202011431.3426A2004C@flycatcher.gentoo.org
1 binki 11/12/02 01:14:31
2
3 Added: irc-client-2.10.3_p7-amd64-chost.patch
4 Log:
5 Add blocker against net-irc/ircii for bug #247987. Add missing `|| die', misc shell style change (remove backticks). Fix compilation error caused by disagreement between ${CHOST} and ./config.guess with patch.
6
7 (Portage version: 2.2.0_alpha78-r1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 net-irc/irc-client/files/irc-client-2.10.3_p7-amd64-chost.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irc-client/files/irc-client-2.10.3_p7-amd64-chost.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irc-client/files/irc-client-2.10.3_p7-amd64-chost.patch?rev=1.1&content-type=text/plain
14
15 Index: irc-client-2.10.3_p7-amd64-chost.patch
16 ===================================================================
17 From: Nathan Phillip Brink <binki@g.o>
18 Subject: Do not ignore the --host argument passed to the fake ./configure.
19
20 --- a/configure
21 +++ b/configure
22 @@ -10,6 +10,7 @@
23 -version | --version | --versio | --versi | --vers)
24 quick_fwd=yes
25 break ;;
26 + --host=*)
27 + rev=$(expr "${arg}" : '[^=]*=\(.*\)')
28 + ;;
29 - *)
30 - break ;;
31 esac
32 @@ -18,8 +21,10 @@
33 then
34 support/configure $*
35 else
36 - echo "retrieving the system name, type and OS release..."
37 - rev=`support/config.guess`
38 + if ! test "${rev}"; then
39 + echo "retrieving the system name, type and OS release..."
40 + rev=`support/config.guess`
41 + fi
42 if test "${rev}" # test for no output
43 then
44 echo " your system seems to be ${rev}."