summaryrefslogtreecommitdiff
path: root/morphlib/builder.py
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-02 11:35:57 +0100
committerJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-02 11:36:36 +0100
commitc222750b56fe2d35a0b37ac8de50f8b495b9c50e (patch)
tree286c8a75a65071e0a4536a426ac5c5d7b19cbde4 /morphlib/builder.py
parenta2d24c6f761f814404094709d8661d021e3df3ae (diff)
downloadmorph-c222750b56fe2d35a0b37ac8de50f8b495b9c50e.tar.gz
Fall back to 'manual' build system if none is specified.
Diffstat (limited to 'morphlib/builder.py')
-rw-r--r--morphlib/builder.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/morphlib/builder.py b/morphlib/builder.py
index bcd934ef..23a1c2ca 100644
--- a/morphlib/builder.py
+++ b/morphlib/builder.py
@@ -279,10 +279,7 @@ class ChunkBuilder(BlobBuilder): # pragma: no cover
'''
bs_name = self.blob.morph.build_system
- if bs_name:
- bs = morphlib.buildsystem.lookup_build_system(bs_name)
- else:
- bs = {}
+ bs = morphlib.buildsystem.lookup_build_system(bs_name)
def run_them(runner, what):
attr = '%s_commands' % what