diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-04-26 10:33:24 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-04-26 10:33:24 -0700 |
commit | ef0fefc506af2dcc4f3cd675d360fee1ec23ed51 (patch) | |
tree | 812aebe2ce2702d9e0c3a598e222bbcaa0268e2a | |
parent | 9fb514ff814a0b71c755ee1ee70203415ffa043e (diff) | |
parent | 168f9c46ea7f249fba3769cf1429348ca218eeae (diff) | |
download | spack-ef0fefc506af2dcc4f3cd675d360fee1ec23ed51.tar.gz spack-ef0fefc506af2dcc4f3cd675d360fee1ec23ed51.tar.bz2 spack-ef0fefc506af2dcc4f3cd675d360fee1ec23ed51.tar.xz spack-ef0fefc506af2dcc4f3cd675d360fee1ec23ed51.zip |
Merge pull request #836 from davydden/astyle_fix
astyle: fix installation of the binary
-rw-r--r-- | var/spack/repos/builtin/packages/astyle/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/astyle/package.py b/var/spack/repos/builtin/packages/astyle/package.py index 7260fd74a1..5274fc018f 100644 --- a/var/spack/repos/builtin/packages/astyle/package.py +++ b/var/spack/repos/builtin/packages/astyle/package.py @@ -14,4 +14,5 @@ class Astyle(Package): make('-f', join_path(self.stage.source_path,'build','clang','Makefile'), parallel=False) + mkdirp(self.prefix.bin) install(join_path(self.stage.source_path, 'src','bin','astyle'), self.prefix.bin) |