aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build.py')
-rw-r--r--build.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/build.py b/build.py
index 64ea6ac..e95020d 100644
--- a/build.py
+++ b/build.py
@@ -40,16 +40,6 @@ class Build:
self.static_cross_linker = None
self.configure_files = []
self.pot = []
- self.user_options = {}
-
- def merge_options(self, options):
- for (name, value) in options.items():
- if name not in self.user_options:
- self.user_options[name] = value
- else:
- oldval = self.user_options[name]
- if type(oldval) != type(value):
- self.user_options[name] = value
def add_compiler(self, compiler):
if len(self.compilers) == 0: