From d543c49cebd409012f53043dd2a13cab851b4ca1 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Fri, 19 Mar 2010 14:30:21 +0000 Subject: [PATCH] * All Tools: - Change: _SEARCH_PATH are put back into the *first* tool of a project. - Bug: In HURRICANE_CHECK_MACRO(), the quiet flag was not correctly implemented. User ARGV instead of argv (case sensitivity!). --- bootstrap/buildCoriolis.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap/buildCoriolis.py b/bootstrap/buildCoriolis.py index 67794889..867ddb3e 100755 --- a/bootstrap/buildCoriolis.py +++ b/bootstrap/buildCoriolis.py @@ -277,7 +277,8 @@ class ProjectBuilder: topUserVariable = "%s_USER_TOP" % project.getName().upper() if not self._environment.has_key(topVariable): self._environment[ topVariable ] = self._installDir - self._environment[ topUserVariable ] = self._installDir + if not self._environment.has_key(topUserVariable): + self._environment[ topUserVariable ] = self._installDir if not self._quiet: print "Setting %s = \"%s\"." % (topVariable ,self._environment[topVariable]) print "Setting %s = \"%s\"." % (topUserVariable,self._environment[topUserVariable])