summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Node
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/SCons/Node')
-rw-r--r--src/engine/SCons/Node/FS.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/SCons/Node/FS.py b/src/engine/SCons/Node/FS.py
index 721d4d5..52919b0 100644
--- a/src/engine/SCons/Node/FS.py
+++ b/src/engine/SCons/Node/FS.py
@@ -1108,7 +1108,8 @@ class Dir(Base):
return self.entries['..']
def rel_path(self, other):
- """Return a path to "other" relative to this directory."""
+ """Return a path to "other" relative to this directory.
+ __cacheable__"""
if isinstance(other, Dir):
name = []
else: