From bde8752c228156805a8ce6403c10ed96e985f6ba Mon Sep 17 00:00:00 2001 From: Simon McVittie <smcv@collabora.com> Date: Tue, 9 Apr 2019 18:03:23 +0100 Subject: [PATCH] Fix installation of libraries Signed-off-by: Simon McVittie <smcv@collabora.com> --- build-relocatable-install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-relocatable-install.py b/build-relocatable-install.py index 2e2a0e0e4..c2ef136f9 100755 --- a/build-relocatable-install.py +++ b/build-relocatable-install.py @@ -165,7 +165,7 @@ def main(): for so in glob.glob( os.path.join('_build', arch, 'lib', '*.so.*'), ): - install(so, os.path.join(DESTDIR, 'lib', 'ma')) + install(so, os.path.join(DESTDIR, 'lib', ma)) source_to_download = set() # type: typing.Set[str] -- GitLab