Merge pull request #11645 from leandrolanzieri/pr/dist/tools/edbg_path_fix

tools/edbg: escape values set by 'env'
This commit is contained in:
Juan I Carrano 2019-06-07 13:44:41 +02:00 committed by GitHub
commit 2f26f95db8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ all: git-download
# Start edbg build in a clean environment, so variables set by RIOT's build process # Start edbg build in a clean environment, so variables set by RIOT's build process
# for cross compiling a specific target platform are reset and edbg can # for cross compiling a specific target platform are reset and edbg can
# be built cleanly for the native platform. # be built cleanly for the native platform.
env -i PATH=$(PATH) TERM=$(TERM) "$(MAKE)" -C $(PKG_BUILDDIR) env -i PATH="$(PATH)" TERM="$(TERM)" "$(MAKE)" -C "$(PKG_BUILDDIR)"
mv $(PKG_BUILDDIR)/edbg . mv $(PKG_BUILDDIR)/edbg .
include $(RIOTBASE)/pkg/pkg.mk include $(RIOTBASE)/pkg/pkg.mk