mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
graphics/libyuv: Download libyuv from NuttX Mirror Repo
NuttX Build Target `sim:nxcamera` failed to build because chromium.googlesource.com is blocking our download of libyuv library: https://github.com/apache/nuttx/actions/runs/24106742084/job/70356374433#step:10:603 ``` Configuration/Tool: sim/nxcamera Building NuttX... curl -L https://chromium.googlesource.com/libyuv/libyuv/+archive/refs/heads/stable.tar.gz -o libyuv.tar.gz gzip: stdin: not in gzip format ``` This PR updates the libyuv Makefile to download libyuv from the NuttX Mirror Repo instead: https://github.com/NuttX/nuttx/releases/tag/libyuv Signed-off-by: Lup Yuen Lee <luppy@appkaki.com>
This commit is contained in:
parent
231ac397a7
commit
9db3e26c85
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ CXXFLAGS += -Wno-shadow -Wno-undef
|
|||
CXXSRCS = $(wildcard $(SRCDIR)/source/*.cc)
|
||||
|
||||
libyuv.tar.gz:
|
||||
$(Q) curl -L https://chromium.googlesource.com/libyuv/libyuv/+archive/refs/heads/$(CONFIG_LIBYUV_BRANCH).tar.gz -o libyuv.tar.gz
|
||||
$(Q) curl -L https://github.com/NuttX/nuttx/releases/download/libyuv/libyuv-refs_heads_$(CONFIG_LIBYUV_BRANCH).tar.gz -o libyuv.tar.gz
|
||||
$(Q) mkdir -p $(SRCDIR)
|
||||
$(Q) tar zxf libyuv.tar.gz --directory $(SRCDIR)
|
||||
ifeq ($(CONFIG_LIBYUV_BRANCH),"stable")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue