2023-12-14 03:38:41 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-06-17 01:43:23 +08:00
|
|
|
# Copyright 2016 The Meson development team
|
|
|
|
|
2022-06-18 19:57:44 +08:00
|
|
|
from pathlib import PurePath
|
|
|
|
|
2020-08-30 03:23:43 +08:00
|
|
|
def destdir_join(d1: str, d2: str) -> str:
|
2021-11-24 12:58:46 +08:00
|
|
|
if not d1:
|
|
|
|
return d2
|
2016-06-17 01:43:23 +08:00
|
|
|
# c:\destdir + c:\prefix must produce c:\destdir\prefix
|
2022-06-18 19:57:44 +08:00
|
|
|
return str(PurePath(d1, *PurePath(d2).parts[1:]))
|