tools/kconfig: replace GNU cp -t with UNIX cp
UNIX `cp` command does not have the `-t` option like its GNU variant. Hence, it usage breaks building RIOT e.g. on FreeBSD.
This commit is contained in:
parent
4e55f634e6
commit
80d86b42ee
5
dist/tools/kconfiglib/Makefile
vendored
5
dist/tools/kconfiglib/Makefile
vendored
@ -7,7 +7,8 @@ PKG_BUILDDIR=$(CURDIR)/bin
|
|||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
|
||||||
all: git-download
|
all: git-download
|
||||||
cp -t . $(PKG_BUILDDIR)/kconfiglib.py $(PKG_BUILDDIR)/menuconfig.py \
|
cp $(PKG_BUILDDIR)/kconfiglib.py $(PKG_BUILDDIR)/menuconfig.py \
|
||||||
$(PKG_BUILDDIR)/genconfig.py $(PKG_BUILDDIR)/examples/merge_config.py
|
$(PKG_BUILDDIR)/genconfig.py $(PKG_BUILDDIR)/examples/merge_config.py \
|
||||||
|
.
|
||||||
|
|
||||||
include $(RIOTBASE)/pkg/pkg.mk
|
include $(RIOTBASE)/pkg/pkg.mk
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user