diff options
author | Tom Payerle <payerle@umd.edu> | 2020-06-03 23:08:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 22:08:07 -0500 |
commit | 0fb671a19ed6e4afe8693ae2a17f0caaee9acca3 (patch) | |
tree | 2458a263f926841aa573c3dafed84edd197d254e | |
parent | 748be57790832e73c78f59e43126ba22c1de78a2 (diff) | |
download | spack-0fb671a19ed6e4afe8693ae2a17f0caaee9acca3.tar.gz spack-0fb671a19ed6e4afe8693ae2a17f0caaee9acca3.tar.bz2 spack-0fb671a19ed6e4afe8693ae2a17f0caaee9acca3.tar.xz spack-0fb671a19ed6e4afe8693ae2a17f0caaee9acca3.zip |
Gnuplot fix 16928 (#16929)
* gnuplot: Fix for #16928
Dependency for --with-wx flag mistyped (should be wxwidgets)
* Revert "gnuplot: Fix for #16928"
This reverts commit 2b85814e5ccf5c9b2c70c7959994e89c18fdc3d8.
* gnuplot: Fix for #16928
Dependency spec for --with-wx flag mistyped (should be wxwidgets, not
wx)
-rw-r--r-- | var/spack/repos/builtin/packages/gnuplot/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/gnuplot/package.py b/var/spack/repos/builtin/packages/gnuplot/package.py index 9fb79e6746..59e527fcde 100644 --- a/var/spack/repos/builtin/packages/gnuplot/package.py +++ b/var/spack/repos/builtin/packages/gnuplot/package.py @@ -122,7 +122,7 @@ class Gnuplot(AutotoolsPackage): options.append('--with-qt=no') if '+wx' in spec: - options.append('--with-wx=%s' % spec['wx'].prefix) + options.append('--with-wx=%s' % spec['wxwidgets'].prefix) else: options.append('--disable-wxwidgets') |