Browse Source

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

vanilla_fb_2.0.x
Victor Oliveira 4 years ago
committed by GitHub
parent
commit
18a5000718
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      buildroot/share/PlatformIO/scripts/common-dependencies.py

2
buildroot/share/PlatformIO/scripts/common-dependencies.py

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

Loading…
Cancel
Save