We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bcb1bc commit 74a140dCopy full SHA for 74a140d
scripts/build/builders/nxp.py
@@ -250,7 +250,8 @@ def generate(self):
250
cmd += 'export NXP_K32W0_SDK_ROOT="' + str(p.sdk_storage_location_abspath) + '" \n '
251
elif p.sdk_name == 'common':
252
cmd += 'export NXP_SDK_ROOT="' + str(p.sdk_storage_location_abspath) + '" \n '
253
- cmd += 'gn gen --check --fail-on-unused-args --export-compile-commands --root=%s' % self.root
+ # add empty space at the end to avoid concatenation issue when there is no --args
254
+ cmd += 'gn gen --check --fail-on-unused-args --export-compile-commands --root=%s ' % self.root
255
256
extra_args = []
257
0 commit comments