From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/1] package/botan: avoid empty -l
Date: Thu, 25 Feb 2021 22:59:26 +0100 [thread overview]
Message-ID: <20210225215926.GN2276@scaer> (raw)
In-Reply-To: <20210221175902.3938257-1-fontaine.fabrice@gmail.com>
Fabrice, All,
On 2021-02-21 18:59 +0100, Fabrice Fontaine spake thusly:
> Add upstream patch to fix upstream commit
> af63fe89228172e5a395f7e6491fae3bfa9da4b1 which was added to buildroot in
> commit d71de4143d7a8554929f2a1e9731f83a4cf85fd3
>
> Fixes:
> - http://autobuild.buildroot.org/results/801007860b7787b28b2b2e3611b59350034a3694
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/botan/0002-Avoid-empty-l.patch | 25 +++++++++++++++++++++++++
> 1 file changed, 25 insertions(+)
> create mode 100644 package/botan/0002-Avoid-empty-l.patch
>
> diff --git a/package/botan/0002-Avoid-empty-l.patch b/package/botan/0002-Avoid-empty-l.patch
> new file mode 100644
> index 0000000000..9102360244
> --- /dev/null
> +++ b/package/botan/0002-Avoid-empty-l.patch
> @@ -0,0 +1,25 @@
> +From 4b2225ea54988e09b649768848b3c14b43e064de Mon Sep 17 00:00:00 2001
> +From: Jack Lloyd <jack@randombit.net>
> +Date: Mon, 15 Feb 2021 15:11:12 -0500
> +Subject: [PATCH] Avoid empty -l
> +
> +[Retrieved from:
> +https://github.com/randombit/botan/commit/4b2225ea54988e09b649768848b3c14b43e064de]
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +---
> + configure.py | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/configure.py b/configure.py
> +index 865a6c8e62..a79f672eca 100755
> +--- a/configure.py
> ++++ b/configure.py
> +@@ -2027,7 +2027,7 @@ def extra_libs(libs, cc):
> + if libs is None:
> + return ''
> +
> +- return ' '.join([(cc.add_lib_option % lib) for lib in libs.split(',')])
> ++ return ' '.join([(cc.add_lib_option % lib) for lib in libs.split(',') if lib != ''])
> +
> + variables = {
> + 'version_major': Version.major(),
> --
> 2.30.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
prev parent reply other threads:[~2021-02-25 21:59 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-21 17:59 [Buildroot] [PATCH 1/1] package/botan: avoid empty -l Fabrice Fontaine
2021-02-25 21:59 ` Yann E. MORIN [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210225215926.GN2276@scaer \
--to=yann.morin.1998@free.fr \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.