File: fix_build_Algorithm-SVM.patch

package info (click to toggle)
psortb 3.0.6%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 121,076 kB
  • sloc: perl: 3,652; ansic: 700; cpp: 338; sh: 27; makefile: 23
file content (20 lines) | stat: -rw-r--r-- 489 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Author: Andreas Tille <tille@debian.org>
Last-Update: 2017-03-17
Origin: https://rt.cpan.org/Public/Bug/Display.html?id=79754
Description: Fix Build of code copy of Algorithm-SVM

--- a/bio-tools-psort-svmloc/Makefile.PL
+++ b/bio-tools-psort-svmloc/Makefile.PL
@@ -1,10 +1,11 @@
 use ExtUtils::MakeMaker;
+use Config;
 use lib '../lib';
 use Bio::Tools::PSort::Install;
 
 $CC = 'g++';
 
-%args = ();
+%args = ('CCFLAGS' => "-Wall $Config{ccflags}");
 
 @libs = qw/svmloc/;
 %paths = ();