summaryrefslogtreecommitdiff
path: root/sci-chemistry/freeon/files/freeon-1.0.10-stop.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sci-chemistry/freeon/files/freeon-1.0.10-stop.patch')
-rw-r--r--sci-chemistry/freeon/files/freeon-1.0.10-stop.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/sci-chemistry/freeon/files/freeon-1.0.10-stop.patch b/sci-chemistry/freeon/files/freeon-1.0.10-stop.patch
deleted file mode 100644
index a20d520e553c..000000000000
--- a/sci-chemistry/freeon/files/freeon-1.0.10-stop.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 882b51fb718c2eed98ef3e8f3be0c5b7320024e1 Mon Sep 17 00:00:00 2001
-From: Justin Lecher <jlec@gentoo.org>
-Date: Mon, 2 Jan 2017 07:56:11 +0000
-Subject: [PATCH] Add missing blank after STOP
-
-The STOP statement requires preceding blank. Newer gcc
-will fail with
-
- CASE DEFAULT; STOP'Err:WghtMtrx'
- 1
-Error: Blank required in STOP statement near (1)
-
-See:
-https://bugs.gentoo.org/show_bug.cgi?id=604138
-
-Signed-off-by: Justin Lecher <jlec@gentoo.org>
----
- FreeON/Optimizer.F90 | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/FreeON/Optimizer.F90 b/FreeON/Optimizer.F90
-index 0ef22269..0bbd9008 100644
---- a/FreeON/Optimizer.F90
-+++ b/FreeON/Optimizer.F90
-@@ -3055,7 +3055,7 @@ CONTAINS
- SELECT CASE(FromTo)
- CASE('CToWC');IFromTo=0
- CASE('WCToC');IFromTo=1
-- CASE DEFAULT; STOP'Err:WghtMtrx'
-+ CASE DEFAULT; STOP 'Err:WghtMtrx'
- END SELECT
- DO AtB=1,NAtoms
- IF(IFromTo.EQ.0) THEN
---
-2.11.0
-