ostbuild: Actually compose devel image from devel base

Otherwise we don't have gcc, gdb, git etc...
This commit is contained in:
Colin Walters 2012-01-31 18:57:02 -05:00
parent 7fc3630222
commit 914f9ffc61
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ class OstbuildBuild(builtins.Builtin):
def _compose_arch(self, architecture, components):
runtime_base = self._get_base('runtime', architecture)
devel_base = self._get_base('runtime', architecture)
devel_base = self._get_base('devel', architecture)
runtime_contents = [runtime_base + ':/']
devel_contents = [devel_base + ':/']