aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-01-08 18:27:27 +0000
committerlloyd <[email protected]>2010-01-08 18:27:27 +0000
commit09591f2104f658213b232401f4a0f76e8ddd640c (patch)
treed7f3780e405880149c2cc40be499ef364244fb8f /configure.py
parentf2725d1eff10497c9041edaa3155f6e091843ecd (diff)
Minor cleanup
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/configure.py b/configure.py
index 5df12443a..0f9ae626e 100755
--- a/configure.py
+++ b/configure.py
@@ -1253,17 +1253,18 @@ def setup_build(build_config, options, template_vars):
finally:
f.close()
- logging.debug('Linking %d public header files in %s' % (
- len(build_config.public_headers), build_config.botan_include_dir))
+ def link_headers(header_list, type, dir):
+ logging.debug('Linking %d %s header files in %s' % (
+ len(header_list), type, dir))
- for header_file in build_config.public_headers:
- portable_symlink(header_file, build_config.botan_include_dir)
+ for header_file in header_list:
+ portable_symlink(header_file, dir)
- logging.debug('Linking %d internal header files in %s' % (
- len(build_config.internal_headers), build_config.internal_include_dir))
+ link_headers(build_config.public_headers, 'public',
+ build_config.botan_include_dir)
- for header_file in build_config.internal_headers:
- portable_symlink(header_file, build_config.internal_include_dir)
+ link_headers(build_config.internal_headers, 'internal',
+ build_config.internal_include_dir)
"""
Generate Amalgamation