2022-06-27 15:37:17 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
# Copyright 2022 Collabora Ltd.
|
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
|
|
# Compatibility shim for installing empty directories with Meson < 0.60
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
import sys
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
|
|
for d in sys.argv[1].split(':'):
|
2023-08-08 12:02:51 +01:00
|
|
|
if os.path.isabs(d):
|
2022-06-27 15:37:17 +01:00
|
|
|
p = Path(d)
|
|
|
|
|
d = p.relative_to(p.anchor)
|
2023-08-08 12:02:51 +01:00
|
|
|
dest = os.path.join(os.environ.get('DESTDIR', '/'), d)
|
2022-06-27 15:37:17 +01:00
|
|
|
else:
|
|
|
|
|
dest = os.path.join(os.environ['MESON_INSTALL_DESTDIR_PREFIX'], d)
|
|
|
|
|
|
|
|
|
|
os.makedirs(dest, mode=0o755, exist_ok=True)
|