diff options
author | noguchi-k <55966120+noguchi-k@users.noreply.github.com> | 2020-08-23 05:22:50 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-22 15:22:50 -0500 |
commit | 15facf21716f413357d7571278f73d6e8265f441 (patch) | |
tree | a1957d4afc8360c7fc7fb5b5958163f40b8ae926 /var | |
parent | f902202b5e7f2473a7ce22505a4cc8b4f39377e0 (diff) | |
download | spack-15facf21716f413357d7571278f73d6e8265f441.tar.gz spack-15facf21716f413357d7571278f73d6e8265f441.tar.bz2 spack-15facf21716f413357d7571278f73d6e8265f441.tar.xz spack-15facf21716f413357d7571278f73d6e8265f441.zip |
ibm-java: add conflicts for aarch64 (#13728)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/ibm-java/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ibm-java/package.py b/var/spack/repos/builtin/packages/ibm-java/package.py index 952fa16a7b..c0a59942e6 100644 --- a/var/spack/repos/builtin/packages/ibm-java/package.py +++ b/var/spack/repos/builtin/packages/ibm-java/package.py @@ -44,6 +44,7 @@ class IbmJava(Package): provides('java@8') conflicts('target=x86_64:', msg='ibm-java is only available for ppc64 and ppc64le') + conflicts('target=aarch64', msg='ibm-java is only available for ppc64 and ppc64le') # This assumes version numbers are 4-tuples: 8.0.5.30 def url_for_version(self, version): |