Bug with other modules.

Version:1.1.47
This commit is contained in:
Anthony Scemama 2010-03-12 13:14:52 +01:00
parent bc326473b3
commit 7e45583978
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
include version
default:
rm *.rpm *.tar.gz 2> /dev/null ;\
rm *.rpm *.tar.gz *.exe.gz 2> /dev/null ;\
VERSION=$(VERSION) epm -a noarch -m noarch irpf90 irpf90.list ;\
cd noarch ;\
cp ~/.rpmmacros .;\

View File

@ -201,6 +201,7 @@ class Fmodule(object):
buffer = filter(lambda x: x.lstrip().startswith("use "), \
self.generated_text+self.head+self.residual_text)
buffer = map(lambda x: x.split()[1], buffer)
buffer = filter(lambda x: x.endswith("_mod"),buffer )
self._needed_modules = make_single(buffer)
if self.name in self._needed_modules:
self._needed_modules.remove(self.name)

View File

@ -1 +1 @@
version = "1.1.46"
version = "1.1.47"