Gentoo Archives: gentoo-commits

From: "Dane Smith (c1pher)" <c1pher@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/truecrypt/files: makefile-archdetect.diff
Date: Wed, 01 Jun 2011 19:51:32
Message-Id: 20110601195123.9DF3020057@flycatcher.gentoo.org
1 c1pher 11/06/01 19:51:23
2
3 Modified: makefile-archdetect.diff
4 Log:
5 app-crypt/truecrypt: Revbump. Better, more genertic fix for bug 369203. Also fix bug 369691.
6
7 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 app-crypt/truecrypt/files/makefile-archdetect.diff
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/truecrypt/files/makefile-archdetect.diff?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/truecrypt/files/makefile-archdetect.diff?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/truecrypt/files/makefile-archdetect.diff?r1=1.1&r2=1.2
15
16 Index: makefile-archdetect.diff
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-crypt/truecrypt/files/makefile-archdetect.diff,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- makefile-archdetect.diff 1 Jun 2011 14:46:10 -0000 1.1
23 +++ makefile-archdetect.diff 1 Jun 2011 19:51:23 -0000 1.2
24 @@ -1,11 +1,11 @@
25 --- Makefile 2010-09-05 10:32:10.000000000 -0400
26 -+++ Makefile.new 2011-06-01 10:17:41.575000055 -0400
27 -@@ -128,7 +128,7 @@
28 - ifneq (,$(filter i386 i486 i586 i686 x86,$(ARCH)))
29 - CPU_ARCH = x86
30 - ASM_OBJ_FORMAT = elf32
31 --else ifneq (,$(filter x86_64 x86-64 amd64 x64,$(ARCH)))
32 -+else ifneq (,$(filter i3 i5 i7 x86_64 x86-64 amd64 x64,$(ARCH)))
33 - CPU_ARCH = x64
34 - ASM_OBJ_FORMAT = elf64
35 ++++ Makefile.new 2011-06-01 15:23:24.975000088 -0400
36 +@@ -120,7 +120,7 @@
37 +
38 + export CPU_ARCH ?= unknown
39 +
40 +-ARCH = $(shell uname -p)
41 ++ARCH = $(shell uname -m)
42 + ifeq "$(ARCH)" "unknown"
43 + ARCH = $(shell uname -m)
44 endif