aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-12-04 17:26:47 -0500
committerJack Lloyd <[email protected]>2016-12-04 17:26:47 -0500
commitb89e7a2d5315ac3df90e40d06868d5a9ce671afc (patch)
tree597a673c760b3574f03cf0c1673848ca7cab9662 /configure.py
parenta681421d01ea132ea3461f99641daacd9bd64df9 (diff)
parent8c6dbef39ed10072154a30c52835a5f609fd1544 (diff)
Merge GH #745 Make --via-amalgamation an error. Improve quoting in Travis build script
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.py b/configure.py
index 52f4326c9..5a63d887a 100755
--- a/configure.py
+++ b/configure.py
@@ -1903,7 +1903,7 @@ def generate_amalgamation(build_config, options):
amalg_header = """/*
* Botan %s Amalgamation
-* (C) 1999-2013,2014,2015 Jack Lloyd and others
+* (C) 1999-2013,2014,2015,2016 Jack Lloyd and others
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
@@ -2201,8 +2201,7 @@ def main(argv = None):
raise Exception("--gen-amalgamation was removed. Migrate to --amalgamation.")
if options.via_amalgamation:
- logging.warn("--via-amalgamation is deprecated. Use --amalgamation.")
- options.amalgamation = True
+ raise Exception("--via-amalgamation was removed. Use --amalgamation instead.")
if options.build_shared_lib and not osinfo.building_shared_supported:
raise Exception('Botan does not support building as shared library on the target os. '