summaryrefslogtreecommitdiff
path: root/build-aux/download.scm
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/download.scm')
-rw-r--r--build-aux/download.scm7
1 files changed, 6 insertions, 1 deletions
diff --git a/build-aux/download.scm b/build-aux/download.scm
index 91b41bcec1..68ad7773f5 100644
--- a/build-aux/download.scm
+++ b/build-aux/download.scm
@@ -45,7 +45,12 @@
(match (string-tokenize file (char-set-complement (char-set #\/)))
((_ ... system basename)
(string->uri (string-append %url-base "/" system
- "/20130105/" basename)))))
+ (match system
+ ("mips64el-linux"
+ "/20131017/")
+ (_
+ "/20130105/"))
+ basename)))))
(match (command-line)
((_ file expected-hash)