diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2017-03-24 15:44:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-24 15:44:01 -0500 |
commit | eca8f548dca0c04ed9ec67a51bec3650a37ad52d (patch) | |
tree | 74474895c8f63c014d1401bf53592441035112cc | |
parent | b5acd5e44b31d156539b4dd885fd9dc6c9a56330 (diff) | |
download | spack-eca8f548dca0c04ed9ec67a51bec3650a37ad52d.tar.gz spack-eca8f548dca0c04ed9ec67a51bec3650a37ad52d.tar.bz2 spack-eca8f548dca0c04ed9ec67a51bec3650a37ad52d.tar.xz spack-eca8f548dca0c04ed9ec67a51bec3650a37ad52d.zip |
coreutils can no longer be built in-source (#3543)
-rw-r--r-- | var/spack/repos/builtin/packages/coreutils/package.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/coreutils/package.py b/var/spack/repos/builtin/packages/coreutils/package.py index a3c77dda9c..7999eb3cf0 100644 --- a/var/spack/repos/builtin/packages/coreutils/package.py +++ b/var/spack/repos/builtin/packages/coreutils/package.py @@ -32,6 +32,9 @@ class Coreutils(AutotoolsPackage): operating system. """ homepage = "http://www.gnu.org/software/coreutils/" - url = "http://ftp.gnu.org/gnu/coreutils/coreutils-8.23.tar.xz" + url = "http://ftp.gnu.org/gnu/coreutils/coreutils-8.26.tar.xz" + version('8.26', 'd5aa2072f662d4118b9f4c63b94601a6') version('8.23', 'abed135279f87ad6762ce57ff6d89c41') + + build_directory = 'spack-build' |