mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
ca-certificates: remove -- separator
Options and directory separator -- slipped past the patch removing Debianims, thus resulting in failures on hosts running Fedora. (From OE-Core rev: a8431689983f5860173548acd899e6806906e4d1) Signed-off-by: Maciej Borzecki <maciej.borzecki@rndity.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
309a6e01e3
commit
0e421c93a8
+5
-1
@@ -6,9 +6,13 @@ This solves errors such as
|
|||||||
|
|
||||||
| Running hooks in [...]/rootfs/etc/ca-certificates/update.d...
|
| Running hooks in [...]/rootfs/etc/ca-certificates/update.d...
|
||||||
| [...]/usr/sbin/update-ca-certificates: line 194: Not: command not found
|
| [...]/usr/sbin/update-ca-certificates: line 194: Not: command not found
|
||||||
|
| [...]/usr/sbin/update-ca-certificates: line 230: Not a directory: --: command not found
|
||||||
|
| E: Not a directory: -- exited with code 127.
|
||||||
|
|
||||||
|
|
||||||
Upstream-Status: Inappropriate
|
Upstream-Status: Inappropriate
|
||||||
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
||||||
|
Signed-off-by: Maciej Borzecki <maciej.borzecki@rndity.com>
|
||||||
---
|
---
|
||||||
sbin/update-ca-certificates | 4 +---
|
sbin/update-ca-certificates | 4 +---
|
||||||
1 file changed, 1 insertion(+), 3 deletions(-)
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
||||||
@@ -24,7 +28,7 @@ Index: git/sbin/update-ca-certificates
|
|||||||
- VERBOSE_ARG=
|
- VERBOSE_ARG=
|
||||||
- [ "$verbose" = 0 ] || VERBOSE_ARG="--verbose"
|
- [ "$verbose" = 0 ] || VERBOSE_ARG="--verbose"
|
||||||
- eval run-parts "$VERBOSE_ARG" --test -- "$HOOKSDIR" | while read hook
|
- eval run-parts "$VERBOSE_ARG" --test -- "$HOOKSDIR" | while read hook
|
||||||
+ eval run-parts --test -- "$HOOKSDIR" | while read hook
|
+ eval run-parts --test "$HOOKSDIR" | while read hook
|
||||||
do
|
do
|
||||||
( cat "$ADDED"
|
( cat "$ADDED"
|
||||||
cat "$REMOVED" ) | "$hook" || echo "E: $hook exited with code $?."
|
cat "$REMOVED" ) | "$hook" || echo "E: $hook exited with code $?."
|
||||||
|
|||||||
Reference in New Issue
Block a user