Browse Source

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

Victor Oliveira 4 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
 	build_flags = env.ParseFlagsExtended(build_flags)
234
 	build_flags = env.ParseFlagsExtended(build_flags)
235
 
235
 
236
 	cxx = search_compiler()
236
 	cxx = search_compiler()
237
-	cmd = [cxx]
237
+	cmd = ['"' + cxx + '"']
238
 
238
 
239
 	# Build flags from board.json
239
 	# Build flags from board.json
240
 	#if 'BOARD' in env:
240
 	#if 'BOARD' in env:

Loading…
Cancel
Save