Commit 73a8ede9 authored by James Larrowe's avatar James Larrowe Committed by Ed Reel

Fix issue where gcc8 depends on gcc7 and vice versa (#3235)

This causes any and all packages installed with -S
to depend on a version of GCC that's not installed.

It breaks the dual-versioning support scheme entirely.
parent 40446e4f
......@@ -23,7 +23,6 @@ class Gcc7 < Package
depends_on 'unzip' => :build
depends_on 'gawk' => :build
depends_on 'dejagnu' => :build # for test
depends_on 'gcc8' => :build # gcc version 8.2.0
depends_on 'icu4c' => :build # icu version 62.1
depends_on 'python27' => :build
depends_on 'python3' => :build
......
......@@ -23,7 +23,6 @@ class Gcc8 < Package
depends_on 'unzip' => :build
depends_on 'gawk' => :build
depends_on 'dejagnu' => :build # for test
depends_on 'gcc7' => :build # gcc version 7.4.0
depends_on 'icu4c' => :build # icu version 62.1
depends_on 'python27' => :build
depends_on 'python3' => :build
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment