mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 12:29:40 +01:00
bash_3.2.x: update recipe version to match what we're shipping
Make sure the recipe version matches what we're actually shipping, so that tools like cve-check can do the right thing. Rather than fetching version 3.2.48 and applying all patches up to and including version 3.2.57, we just fetch the latter in the first place. (From OE-Core rev: 614ac87f2832c5359f371439559be88d6106cd6b) (From OE-Core rev: db3f5330d7a38bb07aca0d65aa94ca36beb721d6) Signed-off-by: André Draszik <adraszik@tycoint.com> Acked-by: Sylvain Lemieux <slemieux@tycoint.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
0572d73d11
commit
c2fd90f245
21
meta/recipes-extended/bash/bash-3.2.57/string-format.patch
Normal file
21
meta/recipes-extended/bash/bash-3.2.57/string-format.patch
Normal file
@@ -0,0 +1,21 @@
|
||||
Fix a string format warning when using security flags:
|
||||
|
||||
| ../bash-3.2.48/print_cmd.c:1152:3: error: format not a string literal and no format arguments [-Werror=format-security]
|
||||
| cprintf (indentation_string);
|
||||
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
||||
|
||||
diff --git a/print_cmd.c b/print_cmd.c
|
||||
index d1dfd1a..956db53 100644
|
||||
--- a/print_cmd.c
|
||||
+++ b/print_cmd.c
|
||||
@@ -1149,7 +1149,7 @@ indent (amount)
|
||||
for (i = 0; amount > 0; amount--)
|
||||
indentation_string[i++] = ' ';
|
||||
indentation_string[i] = '\0';
|
||||
- cprintf (indentation_string);
|
||||
+ cprintf ("%s", indentation_string);
|
||||
}
|
||||
|
||||
static void
|
||||
Reference in New Issue
Block a user