summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiaying Song <jiaying.song.cn@windriver.com>2024-11-11 17:55:19 +0800
committerSteve Sakoman <steve@sakoman.com>2024-11-18 06:59:35 -0800
commit70a89100634795452f00af1fc04d718785fa7104 (patch)
tree6b2eb9f14ed964f7d04bf2ea8d7673f16514e2ab
parente1958af36c9bb27f683b82a13e91f17f4cb64858 (diff)
downloadpoky-70a89100634795452f00af1fc04d718785fa7104.tar.gz
enchant2: fix do_fetch error
Change the SRC_URI to the correct value due to the following error: WARNING: enchant2-2.6.7-r0 do_fetch: Failed to fetch URL https://github.com/AbiWord/enchant/releases/download/v2.6.7/enchant-2.6.7.tar.gz, attempting MIRRORS if available (From OE-Core rev: 15337a58f77de3d0a30b73fcd836349df811ca39) Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/recipes-support/enchant/enchant2_2.6.7.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/enchant/enchant2_2.6.7.bb b/meta/recipes-support/enchant/enchant2_2.6.7.bb
index b31bdc422b..26ff4e8502 100644
--- a/meta/recipes-support/enchant/enchant2_2.6.7.bb
+++ b/meta/recipes-support/enchant/enchant2_2.6.7.bb
@@ -14,7 +14,7 @@ inherit autotools pkgconfig github-releases
14SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/enchant-${PV}.tar.gz" 14SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/enchant-${PV}.tar.gz"
15SRC_URI[sha256sum] = "a1c2e5b59acca000bbfb24810af4a1165733d407f2154786588e076c8cd57bfc" 15SRC_URI[sha256sum] = "a1c2e5b59acca000bbfb24810af4a1165733d407f2154786588e076c8cd57bfc"
16 16
17GITHUB_BASE_URI = "https://github.com/AbiWord/enchant/releases" 17GITHUB_BASE_URI = "https://github.com/rrthomas/enchant/releases"
18 18
19S = "${WORKDIR}/enchant-${PV}" 19S = "${WORKDIR}/enchant-${PV}"
20 20