diff options
author | David Cournapeau <cournape@gmail.com> | 2011-08-20 23:46:16 +0200 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2011-08-29 00:32:27 +0200 |
commit | 9346bc6c69c297607efea9eb5a951e44dbe861f4 (patch) | |
tree | 6a7956b29646aa5e3babfc14427a49f9350149b2 /numpy | |
parent | d3f13afc06982e7b508b238fc3a948ca3f998d12 (diff) | |
download | numpy-9346bc6c69c297607efea9eb5a951e44dbe861f4.tar.gz |
STY: tweak configure comments to match autoconf more closely.
This makes comparison easier.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/build_utils/waf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/build_utils/waf.py b/numpy/build_utils/waf.py index c66be467d..5d4a263f2 100644 --- a/numpy/build_utils/waf.py +++ b/numpy/build_utils/waf.py @@ -62,7 +62,7 @@ int main() """ % to_header({"header_name": header_name}) kw["code"] = code - kw["define_comment"] = "/* Define to 1 if you have the `%s' header. */" % header_name + kw["define_comment"] = "/* Define to 1 if you have the <%s> header file. */" % header_name kw["define_name"] = "HAVE_%s" % sanitize_string(header_name) if not "features" in kw: kw["features"] = ["c"] @@ -135,7 +135,7 @@ int main() { kw["define_value"] = 0 kw["define_name"] = "HAVE_%s" % sanitize_string(type_name) - kw["define_comment"] = "/* Set to 1 if %s is defined. */" % type_name + kw["define_comment"] = "/* Define to 1 if the system has the type `%s'. */" % type_name self.post_check(**kw) if not kw.get('execute', False): return ret == 0 @@ -315,7 +315,7 @@ int main (void) if ret == 0: for f in funcs: self.define_with_comment("HAVE_%s" % sanitize_string(f), 1, - "/* Define to 1 if you have the `%s' function */" % f) + "/* Define to 1 if you have the `%s' function. */" % f) self.post_check(**kw) if not kw.get('execute', False): |