Browse Source

Permit spaces in dependencies g++ path (#19929)

Victor Oliveira 3 years ago
parent
commit
18a5000718
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      buildroot/share/PlatformIO/scripts/common-dependencies.py

+ 1
- 1
buildroot/share/PlatformIO/scripts/common-dependencies.py View File

@@ -234,7 +234,7 @@ def load_marlin_features():
234 234
 	build_flags = env.ParseFlagsExtended(build_flags)
235 235
 
236 236
 	cxx = search_compiler()
237
-	cmd = [cxx]
237
+	cmd = ['"' + cxx + '"']
238 238
 
239 239
 	# Build flags from board.json
240 240
 	#if 'BOARD' in env:

Loading…
Cancel
Save