* All Tools:

- Change: <PROJECT>_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!).
This commit is contained in:
Jean-Paul Chaput 2010-03-19 14:30:21 +00:00
parent 9a574b170e
commit d543c49ceb
1 changed files with 2 additions and 1 deletions

View File

@ -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])