pax: Fix build with gcc7

(From OE-Core rev: 9c222c25e6a8b0414eee3e5f2e7c018b0c51ca4f)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj 2017-04-19 19:31:45 -07:00 committed by Richard Purdie
parent 25c5139593
commit 39bf88ed40
2 changed files with 43 additions and 4 deletions

View File

@ -0,0 +1,38 @@
From e67bb3debe582f0e77770b714bd012bb1082fc41 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Wed, 19 Apr 2017 11:32:00 -0700
Subject: [PATCH] Add a comment for fallthrough
Fixes warnings with gcc7 e.g.
../../../../../../../workspace/sources/pax/src/options.c: In function 'tar_options':
../../../../../../../workspace/sources/pax/src/options.c:725:7: error: this statement may fall through [-Werror=implicit-fallthrough=]
if (opt_add ("write_opt=nodir") < 0)
^
../../../../../../../workspace/sources/pax/src/options.c:730:2: note: here
case 'O':
^~~~
cc1: all warnings being treated as errors
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/options.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/options.c b/src/options.c
index c663b4e..b80819a 100644
--- a/src/options.c
+++ b/src/options.c
@@ -724,6 +724,7 @@ tar_options (int argc, char **argv)
case 'o':
if (opt_add ("write_opt=nodir") < 0)
tar_usage ();
+ /* fallthru */
case 'O':
Oflag = 1;
break;
--
2.12.2

View File

@ -15,10 +15,11 @@ PR = "r2"
DEPENDS_append_libc-musl = " fts "
SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/${BPN}/${BP}.tar.bz2/fbd9023b590b45ac3ade95870702a0d6/${BP}.tar.bz2 \
file://fix_for_compile_with_gcc-4.6.0.patch \
file://pax-3.4_fix_for_x32.patch \
file://0001-include-sys-sysmacros.h-for-major-minor-definitions.patch \
"
file://fix_for_compile_with_gcc-4.6.0.patch \
file://pax-3.4_fix_for_x32.patch \
file://0001-include-sys-sysmacros.h-for-major-minor-definitions.patch \
file://0001-Add-a-comment-for-fallthrough.patch \
"
SRC_URI_append_libc-musl = " file://0001-Fix-build-with-musl.patch \
file://0001-use-strtoll-instead-of-strtoq.patch \