diff --git a/waflib/Tools/__init__.py b/waflib/Tools/__init__.py index c8a3c349..be4a22a6 100644 --- a/waflib/Tools/__init__.py +++ b/waflib/Tools/__init__.py @@ -1,3 +1,3 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2005-2010 (ita) +# Thomas Nagy, 2005-2016 (ita) diff --git a/waflib/Tools/ar.py b/waflib/Tools/ar.py index aac39c0c..dd3d8691 100644 --- a/waflib/Tools/ar.py +++ b/waflib/Tools/ar.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) # Ralf Habacker, 2006 (rh) """ @@ -16,7 +16,7 @@ def find_ar(conf): conf.load('ar') def configure(conf): - """Find the ar program and set the default flags in ``conf.env.ARFLAGS``""" + """Finds the ar program and sets the default flags in ``conf.env.ARFLAGS``""" conf.find_program('ar', var='AR') conf.add_os_flags('ARFLAGS') if not conf.env.ARFLAGS: diff --git a/waflib/Tools/asm.py b/waflib/Tools/asm.py index 7555eaeb..b5708dc4 100644 --- a/waflib/Tools/asm.py +++ b/waflib/Tools/asm.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2008-2010 (ita) +# Thomas Nagy, 2008-2016 (ita) """ Assembly support, used by tools such as gas and nasm @@ -41,7 +41,7 @@ from waflib.TaskGen import extension class asm(Task.Task): """ - Compile asm files by gas/nasm/yasm/... + Compiles asm files by gas/nasm/yasm/... """ color = 'BLUE' run_str = '${AS} ${ASFLAGS} ${ASMPATH_ST:INCPATHS} ${DEFINES_ST:DEFINES} ${AS_SRC_F}${SRC} ${AS_TGT_F}${TGT}' @@ -49,7 +49,7 @@ class asm(Task.Task): @extension('.s', '.S', '.asm', '.ASM', '.spp', '.SPP') def asm_hook(self, node): """ - Bind the asm extension to the asm task + Binds the asm extension to the asm task :param node: input file :type node: :py:class:`waflib.Node.Node` @@ -57,18 +57,18 @@ def asm_hook(self, node): return self.create_compiled_task('asm', node) class asmprogram(link_task): - "Link object files into a c program" + "Links object files into a c program" run_str = '${ASLINK} ${ASLINKFLAGS} ${ASLNK_TGT_F}${TGT} ${ASLNK_SRC_F}${SRC}' ext_out = ['.bin'] inst_to = '${BINDIR}' class asmshlib(asmprogram): - "Link object files into a c shared library" + "Links object files into a c shared library" inst_to = '${LIBDIR}' class asmstlib(stlink_task): - "Link object files into a c static library" + "Links object files into a c static library" pass # do not remove def configure(conf): - conf.env['ASMPATH_ST'] = '-I%s' + conf.env.ASMPATH_ST = '-I%s' diff --git a/waflib/Tools/bison.py b/waflib/Tools/bison.py index 588e1a1e..18384599 100644 --- a/waflib/Tools/bison.py +++ b/waflib/Tools/bison.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 # John O'Meara, 2006 -# Thomas Nagy 2009-2010 (ita) +# Thomas Nagy 2009-2016 (ita) """ The **bison** program is a code generator which creates C or C++ files. @@ -12,7 +12,7 @@ from waflib import Task from waflib.TaskGen import extension class bison(Task.Task): - """Compile bison files""" + """Compiles bison files""" color = 'BLUE' run_str = '${BISON} ${BISONFLAGS} ${SRC[0].abspath()} -o ${TGT[0].name}' ext_out = ['.h'] # just to make sure @@ -20,7 +20,7 @@ class bison(Task.Task): @extension('.y', '.yc', '.yy') def big_bison(self, node): """ - Create a bison task, which must be executed from the directory of the output file. + Creates a bison task, which must be executed from the directory of the output file. """ has_h = '-d' in self.env['BISONFLAGS'] @@ -42,7 +42,7 @@ def big_bison(self, node): def configure(conf): """ - Detect the *bison* program + Detects the *bison* program """ conf.find_program('bison', var='BISON') conf.env.BISONFLAGS = ['-d'] diff --git a/waflib/Tools/c.py b/waflib/Tools/c.py index cd63c345..0dcccf39 100644 --- a/waflib/Tools/c.py +++ b/waflib/Tools/c.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) "Base for c programs/libraries" diff --git a/waflib/Tools/c_aliases.py b/waflib/Tools/c_aliases.py index 0747abf5..c9d53692 100644 --- a/waflib/Tools/c_aliases.py +++ b/waflib/Tools/c_aliases.py @@ -9,6 +9,8 @@ from waflib.Configure import conf def get_extensions(lst): """ + Returns the file extensions for the list of files given as input + :param lst: files to process :list lst: list of string or :py:class:`waflib.Node.Node` :return: list of file extensions @@ -16,17 +18,15 @@ def get_extensions(lst): """ ret = [] for x in Utils.to_list(lst): - try: - if not isinstance(x, str): - x = x.name - ret.append(x[x.rfind('.') + 1:]) - except Exception: - pass + if not isinstance(x, str): + x = x.name + ret.append(x[x.rfind('.') + 1:]) return ret def sniff_features(**kw): """ - Look at the source files and return the features for a task generator (mainly cc and cxx):: + Computes and returns the features required for a task generator by + looking at the file extensions. This aimed for C/C++ mainly:: snif_features(source=['foo.c', 'foo.cxx'], type='shlib') # returns ['cxx', 'c', 'cxxshlib', 'cshlib'] @@ -39,7 +39,7 @@ def sniff_features(**kw): :rtype: list of string """ exts = get_extensions(kw['source']) - type = kw['_type'] + typ = kw['typ'] feats = [] # watch the order, cxx will have the precedence @@ -63,18 +63,27 @@ def sniff_features(**kw): feats.append('java') return 'java' - if type in ('program', 'shlib', 'stlib'): + if typ in ('program', 'shlib', 'stlib'): will_link = False for x in feats: if x in ('cxx', 'd', 'fc', 'c'): - feats.append(x + type) + feats.append(x + typ) will_link = True if not will_link and not kw.get('features', []): raise Errors.WafError('Cannot link from %r, try passing eg: features="c cprogram"?' % kw) return feats -def set_features(kw, _type): - kw['_type'] = _type +def set_features(kw, typ): + """ + Inserts data in the input dict *kw* based on existing data and on the type of target + required (typ). + + :param kw: task generator parameters + :type kw: dict + :param typ: type of target + :type typ: string + """ + kw['typ'] = typ kw['features'] = Utils.to_list(kw.get('features', [])) + Utils.to_list(sniff_features(**kw)) @conf diff --git a/waflib/Tools/c_config.py b/waflib/Tools/c_config.py index 0c00ebf6..694a556e 100644 --- a/waflib/Tools/c_config.py +++ b/waflib/Tools/c_config.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2005-2010 (ita) +# Thomas Nagy, 2005-2016 (ita) """ C/C++/D configuration helpers @@ -75,7 +75,7 @@ MACRO_TO_DESTOS = { '_WIN64' : 'win32', '_WIN32' : 'win32', # Note about darwin: this is also tested with 'defined __APPLE__ && defined __MACH__' somewhere below in this file. -'__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' : 'darwin', +'__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' : 'darwin', '__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__' : 'darwin', # iphone '__QNX__' : 'qnx', '__native_client__' : 'nacl' # google native client platform diff --git a/waflib/Tools/c_osx.py b/waflib/Tools/c_osx.py index f7800afa..08dd060a 100644 --- a/waflib/Tools/c_osx.py +++ b/waflib/Tools/c_osx.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy 2008-2010 +# Thomas Nagy 2008-2016 (ita) """ MacOSX related tools diff --git a/waflib/Tools/c_preproc.py b/waflib/Tools/c_preproc.py index 62e0eee0..e0c4356b 100644 --- a/waflib/Tools/c_preproc.py +++ b/waflib/Tools/c_preproc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) """ C/C++ preprocessor for finding dependencies diff --git a/waflib/Tools/c_tests.py b/waflib/Tools/c_tests.py index 3b37f54c..8097d06c 100644 --- a/waflib/Tools/c_tests.py +++ b/waflib/Tools/c_tests.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2010 (ita) +# Thomas Nagy, 2016 (ita) """ Various configuration tests. diff --git a/waflib/Tools/ccroot.py b/waflib/Tools/ccroot.py index c238def7..1401b95c 100644 --- a/waflib/Tools/ccroot.py +++ b/waflib/Tools/ccroot.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2005-2010 (ita) +# Thomas Nagy, 2005-2016 (ita) """ Classes and methods shared by tools providing support for C-like language such diff --git a/waflib/Tools/clangxx.py b/waflib/Tools/clangxx.py index b539b287..68f0f22d 100644 --- a/waflib/Tools/clangxx.py +++ b/waflib/Tools/clangxx.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy 2009-2010 (ita) +# Thomas Nagy 2009-2016 (ita) """ Detect the Clang++ C++ compiler diff --git a/waflib/Tools/compiler_d.py b/waflib/Tools/compiler_d.py index 9003a92d..e2d50654 100644 --- a/waflib/Tools/compiler_d.py +++ b/waflib/Tools/compiler_d.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 # Carlos Rafael Giani, 2007 (dv) -# Thomas Nagy, 2010 (ita) +# Thomas Nagy, 2016 (ita) """ Try to detect a D compiler from the list of supported compilers:: diff --git a/waflib/Tools/cs.py b/waflib/Tools/cs.py index eed0f11c..c0432fdc 100644 --- a/waflib/Tools/cs.py +++ b/waflib/Tools/cs.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) """ C# support. A simple example:: diff --git a/waflib/Tools/cxx.py b/waflib/Tools/cxx.py index ea171b57..4e774a9f 100644 --- a/waflib/Tools/cxx.py +++ b/waflib/Tools/cxx.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2005-2010 (ita) +# Thomas Nagy, 2005-2016 (ita) "Base for c++ programs and libraries" diff --git a/waflib/Tools/d.py b/waflib/Tools/d.py index 14a3114b..46490492 100644 --- a/waflib/Tools/d.py +++ b/waflib/Tools/d.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 # Carlos Rafael Giani, 2007 (dv) -# Thomas Nagy, 2007-2010 (ita) +# Thomas Nagy, 2007-2016 (ita) from waflib import Utils, Task, Errors from waflib.TaskGen import taskgen_method, feature, extension diff --git a/waflib/Tools/d_config.py b/waflib/Tools/d_config.py index c181d64e..e5cff630 100644 --- a/waflib/Tools/d_config.py +++ b/waflib/Tools/d_config.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2010 (ita) +# Thomas Nagy, 2016 (ita) from waflib import Utils from waflib.Configure import conf diff --git a/waflib/Tools/d_scan.py b/waflib/Tools/d_scan.py index 0943c027..33dc70e0 100644 --- a/waflib/Tools/d_scan.py +++ b/waflib/Tools/d_scan.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2010 (ita) +# Thomas Nagy, 2016 (ita) """ Provide a scanner for finding dependencies on d files diff --git a/waflib/Tools/dmd.py b/waflib/Tools/dmd.py index 64bc4368..7f49d625 100644 --- a/waflib/Tools/dmd.py +++ b/waflib/Tools/dmd.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 # Carlos Rafael Giani, 2007 (dv) -# Thomas Nagy, 2008-2010 (ita) +# Thomas Nagy, 2008-2016 (ita) import sys from waflib.Tools import ar, d diff --git a/waflib/Tools/fc.py b/waflib/Tools/fc.py index 92a286db..8577b224 100644 --- a/waflib/Tools/fc.py +++ b/waflib/Tools/fc.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # encoding: utf-8 # DC 2008 -# Thomas Nagy 2010 (ita) +# Thomas Nagy 2016 (ita) """ fortran support diff --git a/waflib/Tools/fc_config.py b/waflib/Tools/fc_config.py index da93486f..a07fa68e 100644 --- a/waflib/Tools/fc_config.py +++ b/waflib/Tools/fc_config.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # encoding: utf-8 # DC 2008 -# Thomas Nagy 2010 (ita) +# Thomas Nagy 2016 (ita) """ Fortran configuration helpers diff --git a/waflib/Tools/fc_scan.py b/waflib/Tools/fc_scan.py index ac197652..2c72dc74 100644 --- a/waflib/Tools/fc_scan.py +++ b/waflib/Tools/fc_scan.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # encoding: utf-8 # DC 2008 -# Thomas Nagy 2010 (ita) +# Thomas Nagy 2016 (ita) import re diff --git a/waflib/Tools/flex.py b/waflib/Tools/flex.py index 0b1b34ab..59a82792 100644 --- a/waflib/Tools/flex.py +++ b/waflib/Tools/flex.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 # John O'Meara, 2006 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) """ The **flex** program is a code generator which creates C or C++ files. diff --git a/waflib/Tools/g95.py b/waflib/Tools/g95.py index 027be39e..e6408bab 100644 --- a/waflib/Tools/g95.py +++ b/waflib/Tools/g95.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # encoding: utf-8 # KWS 2010 -# Thomas Nagy 2010 (ita) +# Thomas Nagy 2016 (ita) import re from waflib import Utils diff --git a/waflib/Tools/gas.py b/waflib/Tools/gas.py index c97b373f..d600d47f 100644 --- a/waflib/Tools/gas.py +++ b/waflib/Tools/gas.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2008-2010 (ita) +# Thomas Nagy, 2008-2016 (ita) "Detect as/gas/gcc for compiling assembly files" diff --git a/waflib/Tools/gcc.py b/waflib/Tools/gcc.py index 0b897c7d..237de0b4 100644 --- a/waflib/Tools/gcc.py +++ b/waflib/Tools/gcc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) # Ralf Habacker, 2006 (rh) # Yinon Ehrlich, 2009 diff --git a/waflib/Tools/gfortran.py b/waflib/Tools/gfortran.py index 06d039c2..3ed9cba1 100644 --- a/waflib/Tools/gfortran.py +++ b/waflib/Tools/gfortran.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # encoding: utf-8 # DC 2008 -# Thomas Nagy 2010 (ita) +# Thomas Nagy 2016 (ita) import re from waflib import Utils diff --git a/waflib/Tools/glib2.py b/waflib/Tools/glib2.py index 401d4402..bd93718a 100644 --- a/waflib/Tools/glib2.py +++ b/waflib/Tools/glib2.py @@ -1,6 +1,6 @@ #! /usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) """ Support for GLib2 tools: diff --git a/waflib/Tools/gxx.py b/waflib/Tools/gxx.py index 9cf52070..2967adb8 100644 --- a/waflib/Tools/gxx.py +++ b/waflib/Tools/gxx.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) # Ralf Habacker, 2006 (rh) # Yinon Ehrlich, 2009 diff --git a/waflib/Tools/icc.py b/waflib/Tools/icc.py index f3395030..dbfe9957 100644 --- a/waflib/Tools/icc.py +++ b/waflib/Tools/icc.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 # Stian Selnes 2008 -# Thomas Nagy 2009-2010 (ita) +# Thomas Nagy 2009-2016 (ita) """ Detect the Intel C compiler diff --git a/waflib/Tools/icpc.py b/waflib/Tools/icpc.py index 03603d44..d9b93d34 100644 --- a/waflib/Tools/icpc.py +++ b/waflib/Tools/icpc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy 2009-2010 (ita) +# Thomas Nagy 2009-2016 (ita) """ Detect the Intel C++ compiler diff --git a/waflib/Tools/ifort.py b/waflib/Tools/ifort.py index 83436041..98220623 100644 --- a/waflib/Tools/ifort.py +++ b/waflib/Tools/ifort.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # encoding: utf-8 # DC 2008 -# Thomas Nagy 2010 (ita) +# Thomas Nagy 2016 (ita) import re from waflib import Utils diff --git a/waflib/Tools/intltool.py b/waflib/Tools/intltool.py index b344652a..1a6dece7 100644 --- a/waflib/Tools/intltool.py +++ b/waflib/Tools/intltool.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) """ Support for translation tools such as msgfmt and intltool diff --git a/waflib/Tools/javaw.py b/waflib/Tools/javaw.py index 91cc5e6f..bbe00cb9 100644 --- a/waflib/Tools/javaw.py +++ b/waflib/Tools/javaw.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) """ Java support diff --git a/waflib/Tools/lua.py b/waflib/Tools/lua.py index 72cc2bc6..c1130471 100644 --- a/waflib/Tools/lua.py +++ b/waflib/Tools/lua.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 # Sebastian Schlingmann, 2008 -# Thomas Nagy, 2008-2010 (ita) +# Thomas Nagy, 2008-2016 (ita) """ Lua support. diff --git a/waflib/Tools/nasm.py b/waflib/Tools/nasm.py index dbf0129c..2c9bfb81 100644 --- a/waflib/Tools/nasm.py +++ b/waflib/Tools/nasm.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2008-2010 (ita) +# Thomas Nagy, 2008-2016 (ita) """ Nasm tool (asm processing) diff --git a/waflib/Tools/perl.py b/waflib/Tools/perl.py index 35c5ab56..e513332e 100644 --- a/waflib/Tools/perl.py +++ b/waflib/Tools/perl.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 # andersg at 0x63.nu 2007 -# Thomas Nagy 2010 (ita) +# Thomas Nagy 2016 (ita) """ Support for Perl extensions. A C/C++ compiler is required:: diff --git a/waflib/Tools/ruby.py b/waflib/Tools/ruby.py index ebc60c8b..ec327d80 100644 --- a/waflib/Tools/ruby.py +++ b/waflib/Tools/ruby.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 # daniel.svensson at purplescout.se 2008 -# Thomas Nagy 2010 (ita) +# Thomas Nagy 2016 (ita) """ Support for Ruby extensions. A C/C++ compiler is required:: diff --git a/waflib/Tools/suncc.py b/waflib/Tools/suncc.py index c2cbd449..295dcad2 100644 --- a/waflib/Tools/suncc.py +++ b/waflib/Tools/suncc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) # Ralf Habacker, 2006 (rh) from waflib.Tools import ccroot, ar diff --git a/waflib/Tools/suncxx.py b/waflib/Tools/suncxx.py index 1448b565..e2fc7b2c 100644 --- a/waflib/Tools/suncxx.py +++ b/waflib/Tools/suncxx.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) # Ralf Habacker, 2006 (rh) from waflib.Tools import ccroot, ar diff --git a/waflib/Tools/tex.py b/waflib/Tools/tex.py index 4dcc3379..186d101b 100644 --- a/waflib/Tools/tex.py +++ b/waflib/Tools/tex.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) """ TeX/LaTeX/PDFLaTeX/XeLaTeX support diff --git a/waflib/Tools/waf_unit_test.py b/waflib/Tools/waf_unit_test.py index 4fc68cbf..a2f34a31 100644 --- a/waflib/Tools/waf_unit_test.py +++ b/waflib/Tools/waf_unit_test.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 # Carlos Rafael Giani, 2006 -# Thomas Nagy, 2010 +# Thomas Nagy, 2010-2016 (ita) """ Unit testing system for C/C++/D providing test execution: diff --git a/waflib/Tools/xlc.py b/waflib/Tools/xlc.py index 3bd8d026..600ac5cf 100644 --- a/waflib/Tools/xlc.py +++ b/waflib/Tools/xlc.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) # Ralf Habacker, 2006 (rh) # Yinon Ehrlich, 2009 # Michael Kuhn, 2009 diff --git a/waflib/Tools/xlcxx.py b/waflib/Tools/xlcxx.py index 150aeaa4..cececfc8 100644 --- a/waflib/Tools/xlcxx.py +++ b/waflib/Tools/xlcxx.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2006-2010 (ita) +# Thomas Nagy, 2006-2016 (ita) # Ralf Habacker, 2006 (rh) # Yinon Ehrlich, 2009 # Michael Kuhn, 2009