gnuplot: Fix for #16928

Dependency for --with-wx flag mistyped (should be wxwidgets)
This commit is contained in:
Tom Payerle 2020-06-03 10:28:58 -04:00
parent 600e2cfc4f
commit 2b85814e5c

View File

@ -122,7 +122,7 @@ def configure_args(self):
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')