summaryrefslogtreecommitdiffstats
path: root/patches/opkg-utils-0.3.6/0102-opkg-build-in-ptxdist-the-maxium-UID-for-system-user.patch
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-09-10 09:23:51 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2019-09-10 09:32:15 +0200
commit1a49d4bc52596bc99fbccada39e1a8e5d6a2f8b4 (patch)
tree56a45c0252984991236ecc11765aa3f39e7f1c8f /patches/opkg-utils-0.3.6/0102-opkg-build-in-ptxdist-the-maxium-UID-for-system-user.patch
parentc486225138570a4608301b414707c7e4902c4060 (diff)
downloadDistroKit-1a49d4bc52596bc99fbccada39e1a8e5d6a2f8b4.tar.gz
DistroKit-1a49d4bc52596bc99fbccada39e1a8e5d6a2f8b4.tar.xz
opkg-utils: remove local patches
This was a backport from PTXdist upstream. The patches are identical to the patches in the current PTXdist version. The local copy is no longer needed. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'patches/opkg-utils-0.3.6/0102-opkg-build-in-ptxdist-the-maxium-UID-for-system-user.patch')
-rw-r--r--patches/opkg-utils-0.3.6/0102-opkg-build-in-ptxdist-the-maxium-UID-for-system-user.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/patches/opkg-utils-0.3.6/0102-opkg-build-in-ptxdist-the-maxium-UID-for-system-user.patch b/patches/opkg-utils-0.3.6/0102-opkg-build-in-ptxdist-the-maxium-UID-for-system-user.patch
deleted file mode 100644
index 09f9a48..0000000
--- a/patches/opkg-utils-0.3.6/0102-opkg-build-in-ptxdist-the-maxium-UID-for-system-user.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From: Michael Olbrich <m.olbrich@pengutronix.de>
-Date: Fri, 10 Nov 2017 19:52:05 +0100
-Subject: [PATCH] opkg-build: in ptxdist the maxium UID for system users is 999
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
----
- opkg-build | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/opkg-build b/opkg-build
-index 4fddf4c9afda..9401f34924ee 100755
---- a/opkg-build
-+++ b/opkg-build
-@@ -68,14 +68,14 @@ You probably want to remove them: " >&2
- fi
- fi
-
-- large_uid_files=`find . -uid +99 -ls -printf '\\\n' || true`
-+ large_uid_files=`find . -uid +999 -ls -printf '\\\n' || true`
-
- if [ "$ogargs" = "" ] && [ -n "$large_uid_files" ]; then
-- echo "*** Warning: The following files have a UID greater than 99.
-+ echo "*** Warning: The following files have a UID greater than 999.
- You probably want to chown these to a system user: " >&2
- echo -e $large_uid_files
- if [ $? -ne 0 ]; then
-- echo "*** Error: Fail to list files have a UID greater than 99."
-+ echo "*** Error: Fail to list files have a UID greater than 999."
- exit 1
- fi
- echo >&2