From 9d69c934d62e3239157d4e87e03b4c851210dc53 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Tue, 2 May 2017 15:25:58 +0300 Subject: Expand input paths so they do not contain symlinks. --- mesonbuild/mesonmain.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesonbuild/mesonmain.py') diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py index 5544037..b997715 100644 --- a/mesonbuild/mesonmain.py +++ b/mesonbuild/mesonmain.py @@ -87,8 +87,8 @@ class MesonApp: return os.path.exists(fname) def validate_core_dirs(self, dir1, dir2): - ndir1 = os.path.abspath(dir1) - ndir2 = os.path.abspath(dir2) + ndir1 = os.path.abspath(os.path.realpath(dir1)) + ndir2 = os.path.abspath(os.path.realpath(dir2)) if not os.path.exists(ndir1): os.makedirs(ndir1) if not os.path.exists(ndir2): -- cgit v1.1