Commit e2a14390 authored by sidnei's avatar sidnei

- Of course, it only makes sense to run this test if os.symlink exists.
  Also, add an entry to CHANGES.txt


git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@89803 62d5b8a3-27da-0310-9561-8e5933582275
parent c67da4c3
...@@ -4,6 +4,12 @@ Status ...@@ -4,6 +4,12 @@ Status
Change History Change History
************** **************
1.1.2 (Unreleased)
==================
- Fixed a bug that would cause buildout to break while computing a
directory hash if it found a broken symlink (Launchpad #250573)
1.1.1 (2008-07-28) 1.1.1 (2008-07-28)
================== ==================
......
...@@ -1108,9 +1108,9 @@ changes in .svn or CVS directories. ...@@ -1108,9 +1108,9 @@ changes in .svn or CVS directories.
""" """
def bug_250537_broken_symlink_doesnt_affect_sig(): if hasattr(os, 'symlink'):
""" def bug_250537_broken_symlink_doesnt_affect_sig():
"""
If we have a develop recipe, it's signature shouldn't be affected by If we have a develop recipe, it's signature shouldn't be affected by
broken symlinks, and better yet, computing the hash should not break broken symlinks, and better yet, computing the hash should not break
because of the missing target file. because of the missing target file.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment