From 03ba5f68b8fbbf4707e7da88d2dde99b96e306d4 Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Wed, 10 Aug 2022 18:06:24 +0200 Subject: [PATCH] scripts: Add $DESTDIR support to meson-install-web.py meson already supports $DESTDIR natively, but in this case we're using a custom script and so we have to do some extra work ourselves. Signed-off-by: Andrea Bolognani Reviewed-by: Pavel Hrdina --- scripts/meson-install-web.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/meson-install-web.py b/scripts/meson-install-web.py index a03f8523cd..086d465ae4 100755 --- a/scripts/meson-install-web.py +++ b/scripts/meson-install-web.py @@ -4,7 +4,11 @@ import os import shutil import sys +destdir = os.environ.get('DESTDIR', os.sep) + for desc in sys.argv[1:]: inst = desc.split(':') - os.makedirs(inst[1], exist_ok=True) - shutil.copy(inst[0], inst[1]) + src = inst[0] + dst = os.path.join(destdir, inst[1].strip(os.sep)) + os.makedirs(dst, exist_ok=True) + shutil.copy(src, dst)