Skip to content

Commit

Permalink
fix: resolution to #1108
Browse files Browse the repository at this point in the history
Implements a fix for #1108 by quoting around file paths in `librsvg`.
  • Loading branch information
lilopkins committed Oct 16, 2023
1 parent d1751a6 commit a14c2d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gvsbuild/projects/librsvg.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def build(self):
gtk_dir = self.builder.gtk_dir
rust_ver = Project.get_project("cargo").version
python = sys.executable
cmd = f"nmake -f makefile.vc CFG={config} PREFIX={gtk_dir} CARGO=cargo RUSTUP=rustup PYTHON={python} TOOLCHAIN_VERSION={rust_ver} install"
cmd = f"nmake -f makefile.vc CFG={config} \"PREFIX={gtk_dir}\" CARGO=cargo RUSTUP=rustup \"PYTHON={python}\" TOOLCHAIN_VERSION={rust_ver} install"

if Project.opts.enable_gi:
cmd += " INTROSPECTION=1"
Expand Down

0 comments on commit a14c2d5

Please sign in to comment.