Skip to content

Commit

Permalink
Fix paths with spaces in meson_params
Browse files Browse the repository at this point in the history
  • Loading branch information
danyeaw authored and pbor committed Jul 30, 2023
1 parent afd8aa4 commit 58a915d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions gvsbuild/projects/gobject_introspection.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,5 @@ def build(self):

Meson.build(
self,
meson_params="-Dpython=%s\\python.exe -Dcairo_libname=cairo-gobject-2.dll"
% (py_dir,),
meson_params=f'-Dpython="{py_dir}\\python.exe" -Dcairo_libname=cairo-gobject-2.dll',
)
2 changes: 1 addition & 1 deletion gvsbuild/projects/gstreamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def __init__(self):

def build(self):
Meson.build(
self, meson_params=f"-Dc_link_args={self.builder.gtk_dir}\\lib\\ogg.lib"
self, meson_params=f'-Dc_link_args="{self.builder.gtk_dir}\\lib\\ogg.lib"'
)
self.install(r".\COPYING share\doc\gst-plugins-base")

Expand Down

0 comments on commit 58a915d

Please sign in to comment.