From 88bf8abe2b2eb4612ca56ecd193ef9a5c377baf8 Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Tue, 4 May 2021 08:24:13 -0400 Subject: [PATCH] GP-916: PDB:win64PDBMake now works if path contains space --- Ghidra/Features/PDB/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ghidra/Features/PDB/build.gradle b/Ghidra/Features/PDB/build.gradle index d3271f86bf..b624b0005e 100644 --- a/Ghidra/Features/PDB/build.gradle +++ b/Ghidra/Features/PDB/build.gradle @@ -62,7 +62,7 @@ if ("win64".equals(getCurrentPlatformName())) { def projectPath = projectDir.toString() def solutionBatchFilePath = projectPath + "/build/buildSolution.bat" def projectPathWindows = projectPath.replace("/", File.separator) - def solutionPathWindows = "${projectPathWindows}\\src\\pdb\\pdb.sln" + def solutionPathWindows = "\"${projectPathWindows}\\src\\pdb\\pdb.sln\"" doFirst { file("build/os/win64").mkdirs()