From f34c8ec75332fc123f51df2c90e78921274d4986 Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Sat, 20 Feb 2021 14:20:28 +0100 Subject: [PATCH] library-bundler: fix path path starting with // does not work on msys2 this was introduced by mistake anyway --- library-bundler | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library-bundler b/library-bundler index 62f48f12..bf8622c4 100755 --- a/library-bundler +++ b/library-bundler @@ -287,7 +287,7 @@ Multi::bundleGtkDepsFromFile () { "${bundle_dir}/${bundle_component_dir}" touch -r \ - "/${real_component_dir}" \ + "${real_component_dir}" \ "${bundle_dir}/${bundle_component_dir}" Multi::rewriteLoadersCache "${bundle_dir}/${bundle_component_dir}" -- 2.39.2