diff options
author | Kelly (KT) Thompson <kgt@lanl.gov> | 2016-03-22 09:33:49 -0600 |
---|---|---|
committer | Kelly (KT) Thompson <kgt@lanl.gov> | 2016-03-22 09:33:49 -0600 |
commit | 1f8d79b69ab005a6a372ff34806525148c0ed854 (patch) | |
tree | 9b0a5042a79cf520b4b45318ec77410e7bfecc0d /var | |
parent | 3214cd0d5667c641427f6419635ef24c0b0cc6bc (diff) | |
download | spack-1f8d79b69ab005a6a372ff34806525148c0ed854.tar.gz spack-1f8d79b69ab005a6a372ff34806525148c0ed854.tar.bz2 spack-1f8d79b69ab005a6a372ff34806525148c0ed854.tar.xz spack-1f8d79b69ab005a6a372ff34806525148c0ed854.zip |
+ Provide a ~perl variant to support building on systems w/o the perl-devel
package installed.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/graphviz/package.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/graphviz/package.py b/var/spack/repos/builtin/packages/graphviz/package.py index 2a2102bfcb..84bd696af2 100644 --- a/var/spack/repos/builtin/packages/graphviz/package.py +++ b/var/spack/repos/builtin/packages/graphviz/package.py @@ -8,7 +8,6 @@ class Graphviz(Package): version('2.38.0', '5b6a829b2ac94efcd5fa3c223ed6d3ae') variant('perl', default=True, description='Disable if you have problems with the optional script language bindings') - variant('shared', default=True, description='Building static is required on AIX') parallel = False @@ -20,8 +19,6 @@ class Graphviz(Package): options = ['--prefix=%s' % prefix] if '~perl' in spec: options.append('--disable-perl') - if '~shared' in spec: - options.append('--enable-shared=no') configure(*options) make() |