From 80e6f0e5782435157b9a2687ffe6cbd3b3033b47 Mon Sep 17 00:00:00 2001 From: Alejandro Hernandez Date: Fri, 10 Jul 2015 13:42:12 -0700 Subject: opkg-build: Ignore tar error due to hardlinks issue when creating ipk files If a the number of hard links decreases or increases while creating the tar files used for an ipk package, tar fails with error code 1, we use hardlinks on package/ and packages-split/ to decrease disk usage, sometimes other parts of the build can cause a change in the link count, since this happens in a controlled environment we can safely ignore the error and continue to create the ipk file, fixed some typos from old version. [YOCTO #7933] Signed-off-by: Alejandro Hernandez Signed-off-by: Richard Purdie --- meta/recipes-devtools/opkg-utils/opkg-utils_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/recipes-devtools/opkg-utils/opkg-utils_git.bb') diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb index 74b974daf1..2f66632b66 100644 --- a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb +++ b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb @@ -10,9 +10,9 @@ PROVIDES += "virtual/update-alternatives" SRCREV = "53274f087565fd45d8452c5367997ba6a682a37a" PV = "0.1.8+git${SRCPV}" -SRC_URI = "git://git.yoctoproject.org/opkg-utils " +SRC_URI = "git://git.yoctoproject.org/opkg-utils" -SRC_URI_append_class-native = "file://tar_ignore_error.patch" +SRC_URI_append_class-native = " file://tar_ignore_error.patch" S = "${WORKDIR}/git" -- cgit 1.2.3-korg