corrected name of makefile (first letter upper case)
This commit is contained in:
parent
d2652cae47
commit
2b5ed4ab93
|
@ -38,10 +38,10 @@ for arch in architectures:
|
|||
|
||||
# changing dirs in makefile
|
||||
|
||||
makefile = open(os.path.join(baseDir,'makefile'))
|
||||
makefile = open(os.path.join(baseDir,'Makefile'))
|
||||
content = makefile.readlines()
|
||||
makefile.close()
|
||||
makefile = open(os.path.join(baseDir,'makefile'),'w')
|
||||
makefile = open(os.path.join(baseDir,'Makefile'),'w')
|
||||
for line in content:
|
||||
m = re.match(r'(FFTW|IKML|ACML|LAPACK)ROOT\s*:?=',line)
|
||||
if m:
|
||||
|
|
Loading…
Reference in New Issue