corrected name of makefile (first letter upper case)

This commit is contained in:
Christoph Kords 2012-03-14 11:58:05 +00:00
parent d2652cae47
commit 2b5ed4ab93
1 changed files with 2 additions and 2 deletions

View File

@ -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: