File: assume_modern_g%2B%2B.patch

package info (click to toggle)
trinityrnaseq 2.11.0%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 417,528 kB
  • sloc: perl: 48,420; cpp: 17,749; java: 12,695; python: 3,124; sh: 1,030; ansic: 983; makefile: 688; xml: 62
file content (37 lines) | stat: -rw-r--r-- 1,137 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
From: Brian Haas <brianjohnhaas@gmail.com>
Date: Mon, 5 Feb 2018 19:51:50 -0500
Origin: https://github.com/trinityrnaseq/trinityrnaseq/commit/a3d279c17f868fd51d56f8e1a6f9a3c223480fbf.patch
Bug-Debian: https://bugs.debian.org/897877
Subject: [PATCH] assume modern g++

---
 Chrysalis/Makefile | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

diff --git a/Chrysalis/Makefile b/Chrysalis/Makefile
index 346dc5c9..1f1a4223 100644
--- a/Chrysalis/Makefile
+++ b/Chrysalis/Makefile
@@ -297,21 +297,7 @@ SYS_INCS = -I.
 
 # Where to find system-specific includes:
 ifeq ($(COMPILER),g++)
-  ifeq ($(GPP_MAJOR_VERSION),2)
-       SYS_INCS	= -I. -I- $(XERCES_INC)
-  endif
-  ifeq ($(GPP_MAJOR_VERSION),3)
-       SYS_INCS	= -I. -I- $(XERCES_INC)
-  endif
-  ifeq ($(GPP_MAJOR_VERSION),4)
-       SYS_INCS	= -iquote . $(XERCES_INC)
-  endif
-  ifeq ($(GPP_MAJOR_VERSION),5)
-       SYS_INCS        = -iquote . $(XERCES_INC)
-  endif
-  ifeq ($(GPP_MAJOR_VERSION),6)
-       SYS_INCS        = -iquote . $(XERCES_INC)
-  endif
+	SYS_INCS        = -iquote . $(XERCES_INC)
 endif
 
 # Linking control (e.g. to link templates):