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)
This commit is contained in:
Tom Payerle 2020-06-03 23:08:07 -04:00 committed by GitHub
parent 748be57790
commit 0fb671a19e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -122,7 +122,7 @@ def configure_args(self):
options.append('--with-qt=no') options.append('--with-qt=no')
if '+wx' in spec: if '+wx' in spec:
options.append('--with-wx=%s' % spec['wx'].prefix) options.append('--with-wx=%s' % spec['wxwidgets'].prefix)
else: else:
options.append('--disable-wxwidgets') options.append('--disable-wxwidgets')