Skip to content

Commit

Permalink
Merge pull request #1109 from lilopkins/main
Browse files Browse the repository at this point in the history
fix: resolution to #1108: `librsvg` fails to build due to unquoted command environment variables
  • Loading branch information
danyeaw authored Oct 18, 2023
2 parents cb74294 + 01e56d4 commit eca4344
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 eca4344

Please sign in to comment.