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):
|