diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-06-21 06:38:10 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-06-21 06:38:10 +0000 |
commit | 21a5b6b381a0495b1cb9684f538d7e9a6e4e0fcc (patch) | |
tree | acdbbc4aab841caaaac3136620db0902a44c1bb8 /sci-biology/raxml/files/raxml-7.2.5-makefile.patch | |
parent | Maintainer changed to net-mail with dertobi123's permission (diff) | |
download | gentoo-2-21a5b6b381a0495b1cb9684f538d7e9a6e4e0fcc.tar.gz gentoo-2-21a5b6b381a0495b1cb9684f538d7e9a6e4e0fcc.tar.bz2 gentoo-2-21a5b6b381a0495b1cb9684f538d7e9a6e4e0fcc.zip |
Tweaking ebuild, respect LDFLAGS #335629
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/raxml/files/raxml-7.2.5-makefile.patch')
-rw-r--r-- | sci-biology/raxml/files/raxml-7.2.5-makefile.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sci-biology/raxml/files/raxml-7.2.5-makefile.patch b/sci-biology/raxml/files/raxml-7.2.5-makefile.patch new file mode 100644 index 000000000000..8b381e50cb58 --- /dev/null +++ b/sci-biology/raxml/files/raxml-7.2.5-makefile.patch @@ -0,0 +1,29 @@ + Makefile.gcc | 6 +++--- + 1 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/Makefile.gcc b/Makefile.gcc +index 8d09549..59af556 100644 +--- a/Makefile.gcc ++++ b/Makefile.gcc +@@ -1,10 +1,10 @@ + # Makefile August 2006 by Alexandros Stamatakis + # Makefile cleanup October 2006, Courtesy of Peter Cordes <peter@cordes.ca> + +-CC = gcc ++CC ?= gcc + + +-CFLAGS = -D_GNU_SOURCE -fomit-frame-pointer -funroll-loops -O2 ++CFLAGS += -D_GNU_SOURCE + #-Wall -std=c99 -pedantic -Wunused-parameter -Wredundant-decls -Wreturn-type -Wswitch-default -Wunused-value -Wimplicit -Wimplicit-function-declaration -Wimplicit-int -Wimport -pedantic-errors -Wunused -Wunused-function -Wunused-label -Wno-int-to-pointer-cast -Wbad-function-cast -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wstrict-prototypes -Wdeclaration-after-statement -Wpointer-sign -Wextra -Wredundant-decls -Wunused -Wunused-function -Wunused-parameter -Wunused-value -Wunused-variable -Wformat -Wformat-nonliteral -Wparentheses -Wsequence-point -Wuninitialized -Wundef -Wbad-function-cast + + +@@ -19,7 +19,7 @@ all : raxmlHPC + GLOBAL_DEPS = axml.h globalVariables.h + + raxmlHPC : $(objs) +- $(CC) -o raxmlHPC $(objs) $(LIBRARIES) ++ $(CC) $(LDFLAGS) -o raxmlHPC $(objs) $(LIBRARIES) + + classify.o : classify.c $(GLOBAL_DEPS) + evaluatePartialSpecialGeneric.o : evaluatePartialSpecialGeneric.c $(GLOBAL_DEPS) |