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:
Sebastian Meiling 2019-12-05 09:10:30 +01:00
parent 4e55f634e6
commit 80d86b42ee

View File

@ -7,7 +7,8 @@ PKG_BUILDDIR=$(CURDIR)/bin
.PHONY: all
all: git-download
cp -t . $(PKG_BUILDDIR)/kconfiglib.py $(PKG_BUILDDIR)/menuconfig.py \
$(PKG_BUILDDIR)/genconfig.py $(PKG_BUILDDIR)/examples/merge_config.py
cp $(PKG_BUILDDIR)/kconfiglib.py $(PKG_BUILDDIR)/menuconfig.py \
$(PKG_BUILDDIR)/genconfig.py $(PKG_BUILDDIR)/examples/merge_config.py \
.
include $(RIOTBASE)/pkg/pkg.mk