Fixed gather_sources

This commit is contained in:
Guilhem Lavaux 2014-05-22 09:37:20 +02:00
parent 285eeb8ede
commit 61c6f1b3ea

View File

@ -55,7 +55,7 @@ def apply_license(license, relimit, filename):
def apply_python_license(filename): def apply_python_license(filename):
license="""#+ license="""#+
# This is CosmoTool (@FILENAME@) -- Copyright (C) Guilhem Lavaux (2007-2013) # This is CosmoTool (@FILENAME@) -- Copyright (C) Guilhem Lavaux (2007-2014)
# #
# guilhem.lavaux@gmail.com # guilhem.lavaux@gmail.com
# #
@ -97,7 +97,7 @@ def apply_python_license(filename):
def apply_cpp_license(filename): def apply_cpp_license(filename):
license="""/*+ license="""/*+
This is CosmoTool (@FILENAME@) -- Copyright (C) Guilhem Lavaux (2007-2013) This is CosmoTool (@FILENAME@) -- Copyright (C) Guilhem Lavaux (2007-2014)
guilhem.lavaux@gmail.com guilhem.lavaux@gmail.com
@ -137,7 +137,7 @@ knowledge of the CeCILL license and that you accept its terms.
def analyze_tree(prefix, t): def analyze_tree(prefix, t):
for entry in t.items(): for entry in t:
ename = entry.name ename = entry.name
if ename == 'external' or ename == 'zobov': if ename == 'external' or ename == 'zobov':
continue continue