aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mesonlib.py
diff options
context:
space:
mode:
authorClausKlein <claus.klein@arcormail.de>2020-03-17 18:59:28 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2020-03-19 19:11:10 +0200
commit00104b1081cd5076451d83524f4f9bfa75750cf6 (patch)
tree170a740996115895ee61735aa65943af54bf4e7d /mesonbuild/mesonlib.py
parentf72c990bfd7416931508afd85a7b96d6049bada2 (diff)
downloadmeson-00104b1081cd5076451d83524f4f9bfa75750cf6.zip
meson-00104b1081cd5076451d83524f4f9bfa75750cf6.tar.gz
meson-00104b1081cd5076451d83524f4f9bfa75750cf6.tar.bz2
Remove my notes from sources
changes acording review comments
Diffstat (limited to 'mesonbuild/mesonlib.py')
-rw-r--r--mesonbuild/mesonlib.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/mesonbuild/mesonlib.py b/mesonbuild/mesonlib.py
index b3f1629..e215dcd 100644
--- a/mesonbuild/mesonlib.py
+++ b/mesonbuild/mesonlib.py
@@ -270,10 +270,8 @@ class File:
def rel_to_builddir(self, build_to_src: str) -> str:
if self.is_built:
return self.relative_name()
- #NO! return os.path.realpath(self.relative_name())
else:
return os.path.join(build_to_src, self.subdir, self.fname)
- #NO! return os.path.realpath(os.path.join(build_to_src, self.subdir, self.fname))
@lru_cache(maxsize=None)
def absolute_path(self, srcdir: str, builddir: str) -> str: