diff mbox series

[PATCHv2,1/2] musl: Correct SRC_URI

Message ID 20230523012131.50450-1-pkj@axis.com
State New
Headers show
Series [PATCHv2,1/2] musl: Correct SRC_URI | expand

Commit Message

Peter Kjellerstedt May 23, 2023, 1:21 a.m. UTC
When the protocol used to fetch the Git repository was changed from
"git" to "https" in commit 139102a73d (recipes: Default to https git
protocol where possible), the URI was not updated to match.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---
 meta/recipes-core/musl/musl_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Khem Raj May 23, 2023, 1:31 a.m. UTC | #1
On Mon, May 22, 2023 at 6:21 PM Peter Kjellerstedt
<peter.kjellerstedt@axis.com> wrote:
>
> When the protocol used to fetch the Git repository was changed from
> "git" to "https" in commit 139102a73d (recipes: Default to https git
> protocol where possible), the URI was not updated to match.
>
> Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> ---
>  meta/recipes-core/musl/musl_git.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-core/musl/musl_git.bb b/meta/recipes-core/musl/musl_git.bb
> index 19b07d6be9..7c8434f23f 100644
> --- a/meta/recipes-core/musl/musl_git.bb
> +++ b/meta/recipes-core/musl/musl_git.bb
> @@ -12,7 +12,7 @@ PV = "${BASEVER}+git${SRCPV}"
>
>  # mirror is at git://github.com/kraj/musl.git
>
> -SRC_URI = "git://git.musl-libc.org/musl;branch=master;protocol=https \
> +SRC_URI = "git://git.musl-libc.org/git/musl;branch=master;protocol=https \

this change looks fine. Thanks

>             file://0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch \
>             file://0002-ldso-Use-syslibdir-and-libdir-as-default-pathes-to-l.patch \
>            "
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#181621): https://lists.openembedded.org/g/openembedded-core/message/181621
> Mute This Topic: https://lists.openembedded.org/mt/99078698/1997914
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
diff mbox series

Patch

diff --git a/meta/recipes-core/musl/musl_git.bb b/meta/recipes-core/musl/musl_git.bb
index 19b07d6be9..7c8434f23f 100644
--- a/meta/recipes-core/musl/musl_git.bb
+++ b/meta/recipes-core/musl/musl_git.bb
@@ -12,7 +12,7 @@  PV = "${BASEVER}+git${SRCPV}"
 
 # mirror is at git://github.com/kraj/musl.git
 
-SRC_URI = "git://git.musl-libc.org/musl;branch=master;protocol=https \
+SRC_URI = "git://git.musl-libc.org/git/musl;branch=master;protocol=https \
            file://0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch \
            file://0002-ldso-Use-syslibdir-and-libdir-as-default-pathes-to-l.patch \
           "