mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
xfce4-panel-profiles:fix tar error
Backport patch to fix tar errors: tar: value 1762430260 out of uid_t range 0..2097151 Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Haixiao Yan <haixiao.yan.cn@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
|||||||
|
Upstream-Status: Backport [https://gitlab.xfce.org/apps/xfce4-panel-profiles/-/commit/1b853cf]
|
||||||
|
|
||||||
|
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
||||||
|
|
||||||
|
From 1b853cf45b63c67ef52fc1288afb19b18542bb21 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
|
||||||
|
Date: Thu, 3 Nov 2022 10:29:52 +0500
|
||||||
|
Subject: [PATCH] Makefile.in.in: Pass arguments to tar to make build
|
||||||
|
reproducible regardless of user or umask
|
||||||
|
|
||||||
|
---
|
||||||
|
Makefile.in.in | 2 ++
|
||||||
|
1 file changed, 2 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/Makefile.in.in b/Makefile.in.in
|
||||||
|
index 84b12cb..cdb05c6 100644
|
||||||
|
--- a/Makefile.in.in
|
||||||
|
+++ b/Makefile.in.in
|
||||||
|
@@ -31,6 +31,8 @@ pot:
|
||||||
|
|
||||||
|
ifeq ($(shell tar --help|grep -o sort=),sort=)
|
||||||
|
TAROPTS := --sort=name --format ustar
|
||||||
|
+ TAROPTS += --owner=0 --group=0 --numeric-owner
|
||||||
|
+ TAROPTS += --mode=u=wrX,og=
|
||||||
|
endif
|
||||||
|
layouts:
|
||||||
|
cd data/layouts/cupertino; tar $(TAROPTS) -cvjf "../Cupertino.tar.bz2" *
|
||||||
|
--
|
||||||
|
GitLab
|
||||||
|
|
||||||
@@ -11,6 +11,7 @@ DEPENDS += "intltool-native"
|
|||||||
|
|
||||||
SRC_URI = "http://archive.xfce.org/src/apps/${BPN}/1.0/${BP}.tar.bz2 \
|
SRC_URI = "http://archive.xfce.org/src/apps/${BPN}/1.0/${BP}.tar.bz2 \
|
||||||
file://not-create-link-to-locale.patch \
|
file://not-create-link-to-locale.patch \
|
||||||
|
file://0001-Makefile.in.in-Pass-arguments-to-tar.patch \
|
||||||
"
|
"
|
||||||
SRC_URI[sha256sum] = "bc387c13f94109422dc72b0fcb919b0dc11619ba589d03e492252b0d2513b170"
|
SRC_URI[sha256sum] = "bc387c13f94109422dc72b0fcb919b0dc11619ba589d03e492252b0d2513b170"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user