diff options
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/meson/meson/0003-native_bindir.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/meson/meson/0003-native_bindir.patch b/meta/recipes-devtools/meson/meson/0003-native_bindir.patch index da477454cb..2b22531dd0 100644 --- a/meta/recipes-devtools/meson/meson/0003-native_bindir.patch +++ b/meta/recipes-devtools/meson/meson/0003-native_bindir.patch | |||
@@ -51,7 +51,7 @@ index 6d3678f..90fdb80 100644 | |||
51 | - cmd = self.pkgbin.get_command() + args | 51 | - cmd = self.pkgbin.get_command() + args |
52 | + def _call_pkgbin_real(self, args, env, use_native=False): | 52 | + def _call_pkgbin_real(self, args, env, use_native=False): |
53 | + if use_native: | 53 | + if use_native: |
54 | + cmd = self.pkgbin.get_command() + "-native" + args | 54 | + cmd = [self.pkgbin.get_command()[0] + "-native"] + args |
55 | + else: | 55 | + else: |
56 | + cmd = self.pkgbin.get_command() + args | 56 | + cmd = self.pkgbin.get_command() + args |
57 | p, out = Popen_safe(cmd, env=env)[0:2] | 57 | p, out = Popen_safe(cmd, env=env)[0:2] |