summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/package.py b/lib/spack/spack/package.py
index f1c7a824e6..de903c4ffa 100644
--- a/lib/spack/spack/package.py
+++ b/lib/spack/spack/package.py
@@ -288,7 +288,7 @@ class DetectablePackageMeta(object):
# This function should not be overridden by subclasses,
# as it is not designed for bespoke pkg detection but rather
# on a per-platform basis
- if hasattr(cls, 'platform_executables'):
+ if 'platform_executables' in cls.__dict__.keys():
raise PackageError("Packages should not override platform_executables")
cls.platform_executables = platform_executables