From 5f066261a9344e3121a13aaafbbdda3f59b2a105 Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Mon, 11 Jul 2016 13:18:34 +0300 Subject: openh264: Fix installation on Windows Need to prepend a / when converting from a Windows-style path to a UNIX-style one --- recipes/openh264.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/openh264.recipe b/recipes/openh264.recipe index 7a79e327..2ccef6a9 100644 --- a/recipes/openh264.recipe +++ b/recipes/openh264.recipe @@ -67,7 +67,7 @@ class Recipe(recipe.Recipe): # initial / by itself, /c:/foo does not work and and //c is not # the same as /c on Windows. //c/foo is a network path. if not self.config.prefix.startswith('/') and self.config.prefix[1] == ':': - p = self.config.prefix[0] + self.config.prefix[2:] + p = "/" + self.config.prefix[0] + self.config.prefix[2:] else: p = self.config.prefix shell.replace(os.path.join(self.build_dir, 'Makefile'), -- cgit v1.2.3