mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
Commits [1] and [2] are installing host SDK files
"$(HOST_DIR)/usr/share".
check-package (see [3]) reports the error:
package/pico-sdk/pico-sdk.mk:23: install files to $(HOST_DIR)/ instead of $(HOST_DIR)/usr/
package/pico-sdk/pico-sdk.mk:24: install files to $(HOST_DIR)/ instead of $(HOST_DIR)/usr/
package/picotool/picotool.mk:15: install files to $(HOST_DIR)/ instead of $(HOST_DIR)/usr/
This commit installs the host SDK files to "$(HOST_DIR)/share" to fix
this error.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/12970341499
[1] ceb800d3c6
[2] 926381d360
[3] 29a0dd4a30
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Romain Naour <romain.naour@smile.fr>
20 lines
640 B
Makefile
20 lines
640 B
Makefile
################################################################################
|
|
#
|
|
# picotool
|
|
#
|
|
################################################################################
|
|
|
|
PICOTOOL_VERSION = 2.2.0-a4
|
|
PICOTOOL_SITE = $(call github,raspberrypi,picotool,$(PICOTOOL_VERSION))
|
|
PICOTOOL_LICENSE = BSD-3-Clause
|
|
PICOTOOL_LICENSE_FILES = LICENSE.TXT
|
|
|
|
PICOTOOL_CONF_OPTS = -DPICO_SDK_PATH=$(STAGING_DIR)/usr/share/pico-sdk
|
|
PICOTOOL_DEPENDENCIES = libusb pico-sdk
|
|
|
|
HOST_PICOTOOL_CONF_OPTS = -DPICO_SDK_PATH=$(HOST_DIR)/share/pico-sdk
|
|
HOST_PICOTOOL_DEPENDENCIES = host-libusb host-pico-sdk
|
|
|
|
$(eval $(cmake-package))
|
|
$(eval $(host-cmake-package))
|