tools/flatc: don't clone flatbuffers in the global pkg dir
When building with make -j, flatbuffers is cloned by both the flatc build and the regular package build and from time to time a concurrency issue make the build to fail. Keeping regular flatbuffer package and flatc tool sources separate avoid this issue
This commit is contained in:
parent
d687ed4a5a
commit
86fb4a5685
4
dist/tools/flatc/Makefile
vendored
4
dist/tools/flatc/Makefile
vendored
@ -6,8 +6,8 @@ PKG_LICENSE=Apache2.0
|
|||||||
# manually set some RIOT env vars, so this Makefile can be called stand-alone
|
# manually set some RIOT env vars, so this Makefile can be called stand-alone
|
||||||
RIOTBASE ?= $(CURDIR)/../../..
|
RIOTBASE ?= $(CURDIR)/../../..
|
||||||
RIOTTOOLS ?= $(CURDIR)/..
|
RIOTTOOLS ?= $(CURDIR)/..
|
||||||
PKGDIRBASE ?= $(RIOTBASE)/build/pkg
|
PKG_SOURCE_DIR ?= $(CURDIR)/bin
|
||||||
PKG_BUILD_DIR ?= $(CURDIR)/bin
|
PKG_BUILD_DIR ?= $(CURDIR)/bin/build
|
||||||
|
|
||||||
CMAKE_OPTIONS = \
|
CMAKE_OPTIONS = \
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user