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
|
# changing dirs in makefile
|
||||||
|
|
||||||
makefile = open(os.path.join(baseDir,'makefile'))
|
makefile = open(os.path.join(baseDir,'Makefile'))
|
||||||
content = makefile.readlines()
|
content = makefile.readlines()
|
||||||
makefile.close()
|
makefile.close()
|
||||||
makefile = open(os.path.join(baseDir,'makefile'),'w')
|
makefile = open(os.path.join(baseDir,'Makefile'),'w')
|
||||||
for line in content:
|
for line in content:
|
||||||
m = re.match(r'(FFTW|IKML|ACML|LAPACK)ROOT\s*:?=',line)
|
m = re.match(r'(FFTW|IKML|ACML|LAPACK)ROOT\s*:?=',line)
|
||||||
if m:
|
if m:
|
||||||
|
|
Loading…
Reference in New Issue