Skip to content
Snippets Groups Projects
Commit 970c7e8f authored by George Hartzell's avatar George Hartzell Committed by Adam J. Stewart
Browse files

Tell R's configure about tcltk config (#7085)

* Tell R's configure about tcltk config

Add configure arguments that specify the location of
the tcl and tk config scripts.

Fixes #7072

* Flake8 cleanup
parent 1cd03e0f
No related branches found
No related tags found
No related merge requests found
...@@ -96,11 +96,16 @@ def configure_args(self): ...@@ -96,11 +96,16 @@ def configure_args(self):
spec = self.spec spec = self.spec
prefix = self.prefix prefix = self.prefix
tclConfig_path = join_path(spec['tcl'].prefix.lib, 'tclConfig.sh')
tkConfig_path = join_path(spec['tk'].prefix.lib, 'tkConfig.sh')
config_args = [ config_args = [
'--libdir={0}'.format(join_path(prefix, 'rlib')), '--libdir={0}'.format(join_path(prefix, 'rlib')),
'--enable-R-shlib', '--enable-R-shlib',
'--enable-BLAS-shlib', '--enable-BLAS-shlib',
'--enable-R-framework=no' '--enable-R-framework=no',
'--with-tcl-config={0}'.format(tclConfig_path),
'--with-tk-config={0}'.format(tkConfig_path),
] ]
if '+external-lapack' in spec: if '+external-lapack' in spec:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment