Fix obsolete references to wx package (#16944)

This commit is contained in:
Adam J. Stewart 2020-06-04 08:05:48 -05:00 committed by GitHub
parent 0dd1d1f21a
commit 7617054a5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -51,6 +51,6 @@ def install(self, spec, prefix):
"--with-paraver=%s" % prefix,
"--with-boost=%s" % spec['boost'].prefix,
"--with-boost-serialization=boost_serialization",
"--with-wxdir=%s" % spec['wx'].prefix.bin)
"--with-wxdir=%s" % spec['wxwidgets'].prefix.bin)
make()
make("install")

View file

@ -20,7 +20,7 @@ class Wxpropgrid(Package, SourceforgePackage):
def install(self, spec, prefix):
configure("--prefix=%s" % prefix, "--with-wxdir=%s" %
spec['wx'].prefix.bin, "--enable-unicode")
spec['wxwidgets'].prefix.bin, "--enable-unicode")
make()
make("install")