File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,12 @@ def install_step(self):
5454 self .mkl_basedir = os .getenv ('MKLROOT' )
5555 self .build_mkl_fftw_interfaces (os .path .join (self .installdir , 'lib' ))
5656
57- def make_module_req_guess (self ):
58- """Custom guesses for imkl-FFTW module file"""
59- # bypass custom paths for imkl, only use standard library location
60- return super (EB_imkl , self ).make_module_req_guess ()
57+ def make_module_step (self , * args , ** kwargs ):
58+ """
59+ Custom paths of imkl are unnecessary as imkl-FFTW only ships libraries under the 'lib' subdir
60+ Use generic make_module_step skipping imkl
61+ """
62+ return super (EB_imkl , self ).make_module_step (* args , ** kwargs )
6163
6264 def make_module_extra (self ):
6365 """Custom extra variables to set in module file"""
You can’t perform that action at this time.
0 commit comments