Fix obsolete references to wx package (#16944)
This commit is contained in:
parent
0dd1d1f21a
commit
7617054a5d
2 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue