From 92d98f57eaa6e0871b70d0d0ab1db879cf3ea47a Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Mon, 25 Feb 2013 11:45:30 +0000 Subject: Set environment variables defining target for build-essential In the future we will allow this to be modified to provide a cross-bootstrap mode, but for now we use the same target as the host compiler. --- morphlib/cachekeycomputer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'morphlib/cachekeycomputer.py') diff --git a/morphlib/cachekeycomputer.py b/morphlib/cachekeycomputer.py index 15dc5ae9..d9ad5762 100644 --- a/morphlib/cachekeycomputer.py +++ b/morphlib/cachekeycomputer.py @@ -27,7 +27,8 @@ class CacheKeyComputer(object): self._calculated = {} def _filterenv(self, env): - keys = ["BOOTSTRAP", "LOGNAME", "PREFIX", "USER", "USERNAME"] + keys = ["LOGNAME", "PREFIX", "TARGET", "TARGET_STAGE1", + "TARGET_GCC_CONFIG", "USER", "USERNAME"] return dict([(k, env[k]) for k in keys]) def compute_key(self, artifact): -- cgit v1.2.1