aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/minstall.py
diff options
context:
space:
mode:
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2022-03-24 12:38:32 +0100
committerEli Schwartz <eschwartz93@gmail.com>2022-03-24 15:26:12 -0400
commitb0d300e788571f48e95d6e673c6f94e54d1dd355 (patch)
tree8b823094caa99c43b409f39b37e91034e6307676 /mesonbuild/minstall.py
parentb66a477bbcffb05b740d4f58246b0e47b9c247a1 (diff)
downloadmeson-b0d300e788571f48e95d6e673c6f94e54d1dd355.zip
meson-b0d300e788571f48e95d6e673c6f94e54d1dd355.tar.gz
meson-b0d300e788571f48e95d6e673c6f94e54d1dd355.tar.bz2
install_symlink: Handle $DESTDIR case for links with absolute path
In case a link is pointing_to an absolute path and we are using $DESTDIR we fail in case the target is missing. This is incorrect because we may need to use an absolute path to an already installed file that is in $DESTDIR. So if an absolute target is not existing, check if we have such file in $DESTDIR before failing for real.
Diffstat (limited to 'mesonbuild/minstall.py')
-rw-r--r--mesonbuild/minstall.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/mesonbuild/minstall.py b/mesonbuild/minstall.py
index f33ad0a..1531be4 100644
--- a/mesonbuild/minstall.py
+++ b/mesonbuild/minstall.py
@@ -431,10 +431,12 @@ class Installer:
append_to_log(self.lf, to_file)
return True
- def do_symlink(self, target: str, link: str, full_dst_dir: str, allow_missing: bool) -> bool:
+ def do_symlink(self, target: str, link: str, destdir: str, full_dst_dir: str, allow_missing: bool) -> bool:
abs_target = target
if not os.path.isabs(target):
abs_target = os.path.join(full_dst_dir, target)
+ elif not os.path.exists(abs_target) and not allow_missing:
+ abs_target = destdir_join(destdir, abs_target)
if not os.path.exists(abs_target) and not allow_missing:
raise MesonException(f'Tried to install symlink to missing file {abs_target}')
if os.path.exists(link):
@@ -604,7 +606,7 @@ class Installer:
full_dst_dir = get_destdir_path(destdir, fullprefix, s.install_path)
full_link_name = get_destdir_path(destdir, fullprefix, s.name)
dm.makedirs(full_dst_dir, exist_ok=True)
- if self.do_symlink(s.target, full_link_name, full_dst_dir, s.allow_missing):
+ if self.do_symlink(s.target, full_link_name, destdir, full_dst_dir, s.allow_missing):
self.did_install_something = True
def install_man(self, d: InstallData, dm: DirMaker, destdir: str, fullprefix: str) -> None: