Gentoo Archives: gentoo-commits

From: "Lennart Kolmodin (kolmodin)" <kolmodin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/ghc/files: ghc-6.12.1-configure-CHOST.patch
Date: Tue, 26 Jan 2010 19:54:14
Message-Id: E1NZrUJ-0000BX-FM@stork.gentoo.org
1 kolmodin 10/01/26 19:54:11
2
3 Added: ghc-6.12.1-configure-CHOST.patch
4 Log:
5 Version bump dev-lang/ghc-6.12.1, currently hard masked.
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-lang/ghc/files/ghc-6.12.1-configure-CHOST.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ghc/files/ghc-6.12.1-configure-CHOST.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ghc/files/ghc-6.12.1-configure-CHOST.patch?rev=1.1&content-type=text/plain
13
14 Index: ghc-6.12.1-configure-CHOST.patch
15 ===================================================================
16 --- old-ghc-6.12.0.20091010/configure.ac 2009-11-07 14:11:31.747192438 +0100
17 +++ new-ghc-6.12.0.20091010/configure.ac 2009-11-07 14:11:31.752194402 +0100
18 @@ -219,6 +219,8 @@
19 exit 1
20 fi
21 fi
22 +build=`echo "$build" | sed -e 's/linux-gnu/linux/' -e 's/-pc-/-unknown-/'`
23 +build=`echo "$build" | sed -e 's/i686/i386/'`
24
25 if test "$host" = ""
26 then
27 @@ -231,6 +233,8 @@
28 exit 1
29 fi
30 fi
31 +host=`echo "$host" | sed -e 's/linux-gnu/linux/' -e 's/-pc-/-unknown-/'`
32 +host=`echo "$host" | sed -e 's/i686/i386/'`
33
34 if test "$target" = ""
35 then
36 @@ -243,6 +247,8 @@
37 exit 1
38 fi
39 fi
40 +target=`echo "$target" | sed -e 's/linux-gnu/linux/' -e 's/-pc-/-unknown-/'`
41 +target=`echo "$target" | sed -e 's/i686/i386/'`
42
43 exeext=''
44 soext='.so'