diff python/ppci/recipe.py @ 366:39bf68bf1891

Fix sample tests and deterministic build
author Windel Bouwman
date Fri, 21 Mar 2014 09:43:01 +0100
parents c2ddc8a36f5e
children 577ed7fb3fe4
line wrap: on
line diff
--- a/python/ppci/recipe.py	Wed Mar 19 22:32:04 2014 +0100
+++ b/python/ppci/recipe.py	Fri Mar 21 09:43:01 2014 +0100
@@ -3,11 +3,7 @@
 
 from .buildtasks import Compile, Assemble, Link
 from .objectfile import ObjectFile
-from .target.target_list import target_list
-
-
-targets = {t.name: t for t in target_list}
-targetnames = list(targets.keys())
+from .target.target_list import targets
 
 
 class RecipeLoader: