diff options
-rw-r--r-- | recipes/openh264.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
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'), |