third_party/waf: upgrade to waf 2.0.8
[bbaumbach/samba-autobuild/.git] / third_party / waf / waflib / Tools / python.py
index 10e407387d3ee6896ee6061e5ee11be77a36abd4..25841d03cf8ed60e2bfd2ac9ac67bebf9cd79e3c 100644 (file)
@@ -1,7 +1,3 @@
-#! /usr/bin/env python
-# encoding: utf-8
-# WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file
-
 #!/usr/bin/env python
 # encoding: utf-8
 # Thomas Nagy, 2007-2015 (ita)
@@ -450,9 +446,9 @@ def check_python_version(conf, minver=None):
        Check if the python interpreter is found matching a given minimum version.
        minver should be a tuple, eg. to check for python >= 2.4.2 pass (2,4,2) as minver.
 
-       If successful, PYTHON_VERSION is defined as 'MAJOR.MINOR'
-       (eg. '2.4') of the actual python version found, and PYTHONDIR is
-       defined, pointing to the site-packages directory appropriate for
+       If successful, PYTHON_VERSION is defined as 'MAJOR.MINOR' (eg. '2.4')
+       of the actual python version found, and PYTHONDIR and PYTHONARCHDIR
+       are defined, pointing to the site-packages directories appropriate for
        this python version, where modules/packages/extensions should be
        installed.