diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-08 14:20:56 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-08 14:31:54 +0100 |
commit | b835d10d61b0e21b8e85511e0a706cfef9ff3fc7 (patch) | |
tree | ac2a21d56968b1293e5ecabfc6c82bf346aaffb9 | |
parent | 2157d82ed39fbcb13e65a7d97e3e51c8c3e23348 (diff) |
gnu: paml: Pass -fcommon to compiler.
* gnu/packages/bioinformatics.scm (paml)[arguments]: Set CFLAGS.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 7f4c7212a1..7d8de9a52d 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -9797,7 +9797,7 @@ straight away. Its main features are: (build-system gnu-build-system) (arguments `(#:tests? #f ; there are no tests - #:make-flags '("CC=gcc") + #:make-flags '("CC=gcc" "CFLAGS=-fcommon -O3") #:phases (modify-phases %standard-phases (replace 'configure |