Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/raxml/files: raxml-7.2.6-makefile.patch
Date: Mon, 27 Jun 2011 05:59:10
Message-Id: 20110627055901.2815720054@flycatcher.gentoo.org
1 jlec 11/06/27 05:59:01
2
3 Added: raxml-7.2.6-makefile.patch
4 Log:
5 Version BUmp, 312897
6
7 (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sci-biology/raxml/files/raxml-7.2.6-makefile.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/raxml/files/raxml-7.2.6-makefile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/raxml/files/raxml-7.2.6-makefile.patch?rev=1.1&content-type=text/plain
14
15 Index: raxml-7.2.6-makefile.patch
16 ===================================================================
17 Makefile.gcc | 6 +++---
18 1 files changed, 3 insertions(+), 3 deletions(-)
19
20 diff --git a/Makefile.gcc b/Makefile.gcc
21 index 716b6c6..f0c1de2 100644
22 --- a/Makefile.gcc
23 +++ b/Makefile.gcc
24 @@ -1,10 +1,10 @@
25 # Makefile August 2006 by Alexandros Stamatakis
26 # Makefile cleanup October 2006, Courtesy of Peter Cordes <peter@××××××.ca>
27
28 -CC = gcc
29 +CC ?= gcc
30
31
32 -CFLAGS = -D_GNU_SOURCE -fomit-frame-pointer -funroll-loops -O2 -msse
33 +CFLAGS += -D_GNU_SOURCE
34
35
36
37 @@ -19,7 +19,7 @@ all : raxmlHPC
38 GLOBAL_DEPS = axml.h globalVariables.h
39
40 raxmlHPC : $(objs)
41 - $(CC) -o raxmlHPC $(objs) $(LIBRARIES)
42 + $(CC) $(LDFLAGS) -o raxmlHPC $(objs) $(LIBRARIES)
43
44 classify.o : classify.c $(GLOBAL_DEPS)
45 evaluatePartialSpecialGeneric.o : evaluatePartialSpecialGeneric.c $(GLOBAL_DEPS)