diff options
Diffstat (limited to 'src/engine/SCons/Node/FS.py')
| -rw-r--r-- | src/engine/SCons/Node/FS.py | 14 | 
1 files changed, 8 insertions, 6 deletions
diff --git a/src/engine/SCons/Node/FS.py b/src/engine/SCons/Node/FS.py index 21ccecc..65d1ac1 100644 --- a/src/engine/SCons/Node/FS.py +++ b/src/engine/SCons/Node/FS.py @@ -33,7 +33,7 @@ that can be used by scripts or modules looking for the canonical default.  # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  from __future__ import print_function -__revision__ = "src/engine/SCons/Node/FS.py e724ae812eb96f4858a132f5b8c769724744faf6 2019-07-21 00:04:47 bdeegan" +__revision__ = "src/engine/SCons/Node/FS.py bee7caf9defd6e108fc2998a2520ddb36a967691 2019-12-17 02:07:09 bdeegan"  import fnmatch  import os @@ -963,14 +963,14 @@ class Entry(Base):      def disambiguate(self, must_exist=None):          """ -        """ -        if self.isdir(): -            self.__class__ = Dir -            self._morph() -        elif self.isfile(): +        """  +        if self.isfile():              self.__class__ = File              self._morph()              self.clear() +        elif self.isdir(): +            self.__class__ = Dir +            self._morph()          else:              # There was nothing on-disk at this location, so look in              # the src directory. @@ -3436,6 +3436,8 @@ class File(Base):              Boolean - Indicates if node(File) has changed.          """ +        if node is None: +            node = self          # Now get sconsign name -> csig map and then get proper prev_ni if possible          bi = node.get_stored_info().binfo          rebuilt = False  | 
