summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/buildsystem.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index 3d19af48..759693d2 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -104,6 +104,7 @@ class AutotoolsBuildSystem(BuildSystem):
build_systems = [
ManualBuildSystem(),
AutotoolsBuildSystem(),
+ DummyBuildSystem(),
]
@@ -132,5 +133,5 @@ def lookup_build_system(name):
for bs in build_systems:
if bs.name == name:
return bs
- raise KeyError(name)
+ raise KeyError('Unknown build system: %s' % name)