++changes
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
b63fdf16ed
commit
ae7887f775
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
||||||
2.0.2:
|
2.0.2:
|
||||||
* Add support for detection of OpenWall Linux (Matthias Teege)
|
* Add support for detection of OpenWall Linux (Matthias Teege)
|
||||||
|
* Add support for __debug variable in manifests
|
||||||
|
* Bugfix core: Various issues with type emulator
|
||||||
|
|
||||||
2.0.1: 2011-09-23
|
2.0.1: 2011-09-23
|
||||||
* Bugfix core: Always print source of error in case of exec errors
|
* Bugfix core: Always print source of error in case of exec errors
|
||||||
|
|
|
@ -127,7 +127,7 @@ def run(argv):
|
||||||
# Record requirements
|
# Record requirements
|
||||||
if "__require" in os.environ:
|
if "__require" in os.environ:
|
||||||
requirements = os.environ['__require']
|
requirements = os.environ['__require']
|
||||||
print(object_id + ":Writing requirements: " + requirements)
|
log.debug(object_id + ":Writing requirements: " + requirements)
|
||||||
require_fd = open(os.path.join(object_dir, "require"), "a")
|
require_fd = open(os.path.join(object_dir, "require"), "a")
|
||||||
require_fd.writelines(requirements.split(" "))
|
require_fd.writelines(requirements.split(" "))
|
||||||
require_fd.close()
|
require_fd.close()
|
||||||
|
|
Loading…
Reference in a new issue