summaryrefslogtreecommitdiff
path: root/morphlib/morph3.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/morph3.py')
-rw-r--r--morphlib/morph3.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/morphlib/morph3.py b/morphlib/morph3.py
index 477cac1a..a91ff390 100644
--- a/morphlib/morph3.py
+++ b/morphlib/morph3.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2013 Codethink Limited
+# Copyright (C) 2013-2014 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -18,6 +18,8 @@
import UserDict
+import morphlib
+
class Morphology(UserDict.IterableUserDict):
@@ -43,3 +45,11 @@ class Morphology(UserDict.IterableUserDict):
self.filename = None
self.dirty = None
+ def get_commands(self, which):
+ '''Return the commands to run from a morphology or the build system'''
+ if self.get(which, None) is None:
+ attr = '_'.join(which.split('-'))
+ bs = morphlib.buildsystem.lookup_build_system(self['build-system'])
+ return getattr(bs, attr)
+ else:
+ return self[which]