diff options
author | Matthew Waters <matthew@centricular.com> | 2018-10-16 18:08:49 +1100 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2018-10-16 18:10:38 +1100 |
commit | 3af05ce1a4a5c610e53bd9aa6f714dce970c3eae (patch) | |
tree | b57f1e8eab4e9b50616e41e5152c0d83cae50c3a /recipes/graphene.recipe | |
parent | af5dd9aae17fd6eb571733a0e40598106ccd476d (diff) |
recipes/graphene: use the meson build dir for built artifacts
FileNotFoundError: [Errno 2] No such file or directory: '/Users/macminicustomer/jenkins/workspace/cerbero-osx-x86-64-1010/workdir/sources/darwin_x86_64/graphene-1.8.2/src/graphene-config.h'
Diffstat (limited to 'recipes/graphene.recipe')
-rw-r--r-- | recipes/graphene.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/graphene.recipe b/recipes/graphene.recipe index a354e561..7e3b4f18 100644 --- a/recipes/graphene.recipe +++ b/recipes/graphene.recipe @@ -75,7 +75,7 @@ class Recipe(recipe.Recipe): 'include', arch) if not os.path.exists(arch_dir): os.makedirs(arch_dir) - shutil.copyfile(os.path.join(self.build_dir, 'src', 'graphene-config.h'), + shutil.copyfile(os.path.join(self.meson_dir, 'src', 'graphene-config.h'), os.path.join(arch_dir, 'graphene-config.h')) with open(os.path.join(self.config.prefix, 'lib', 'graphene-1.0', 'include', 'graphene-config.h'), 'w+') as f: |