diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-10-28 10:29:36 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-10-28 10:29:36 +0100 |
commit | 7491edafdbfdf1e2195789e47f6c0379fd039c70 (patch) | |
tree | b7e9c02c5a2ed437bdc54f6e1ee689f83a57aa21 /gnu/packages/scheme.scm | |
parent | f15615b11954dd7c5e4366fc615a1eee62e0ee57 (diff) | |
download | patches-7491edafdbfdf1e2195789e47f6c0379fd039c70.tar patches-7491edafdbfdf1e2195789e47f6c0379fd039c70.tar.gz |
gnu: mit-scheme: Fix typo in 'supported-systems'.
* gnu/packages/scheme.scm (mit-scheme)[supported-systems]: Correct
spelling of "mips64el-linux".
Diffstat (limited to 'gnu/packages/scheme.scm')
-rw-r--r-- | gnu/packages/scheme.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index 40ea5b930c..58740e5e21 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -120,7 +120,7 @@ "0w5ib5vsidihb4hb6fma3sp596ykr8izagm57axvgd6lqzwicsjg")))))))) ;; Fails to build on MIPS, see <http://bugs.gnu.org/18221>. - (supported-systems (delete "mipsel64-linux" %supported-systems)) + (supported-systems (delete "mips64el-linux" %supported-systems)) (home-page "http://www.gnu.org/software/mit-scheme/") (synopsis "Scheme implementation with integrated editor and debugger") |