summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-03-10 15:02:33 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2021-03-10 18:37:44 +0000
commit653b190ffe5f4433112ad6786d1bfd2e26143711 (patch)
tree96adad43e2e6162b547d0a9ae40ef59aabfed9f4 /app-arch/pax
parentnet-libs/gnutls: Bump to version 3.7.1 (diff)
downloadgentoo-653b190ffe5f4433112ad6786d1bfd2e26143711.tar.gz
gentoo-653b190ffe5f4433112ad6786d1bfd2e26143711.tar.bz2
gentoo-653b190ffe5f4433112ad6786d1bfd2e26143711.zip
app-arch/pax: remove unused patch(es)
Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/19866 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'app-arch/pax')
-rw-r--r--app-arch/pax/files/pax-20160306-glibc-to-linux.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/app-arch/pax/files/pax-20160306-glibc-to-linux.patch b/app-arch/pax/files/pax-20160306-glibc-to-linux.patch
deleted file mode 100644
index eec6624eedc2..000000000000
--- a/app-arch/pax/files/pax-20160306-glibc-to-linux.patch
+++ /dev/null
@@ -1,38 +0,0 @@
---- a/cache.c
-+++ b/cache.c
-@@ -195,7 +195,7 @@
- * No entry for this uid, we will add it
- */
- if (!pwopn) {
--#if defined(__GLIBC__)
-+#if defined(__GLIBC__) || defined(__linux__)
- setpwent();
- #elif !defined(__INTERIX)
- setpassent(1);
-@@ -265,7 +265,7 @@
- * No entry for this gid, we will add it
- */
- if (!gropn) {
--#if defined(__GLIBC__)
-+#if defined(__GLIBC__) || defined(__linux__)
- setgrent();
- #elif !defined(__INTERIX) && !defined(__CYGWIN__)
- setgroupent(1);
-@@ -336,7 +336,7 @@
- }
-
- if (!pwopn) {
--#if defined(__GLIBC__)
-+#if defined(__GLIBC__) || defined(__linux__)
- setpwent();
- #elif !defined(__INTERIX)
- setpassent(1);
-@@ -403,7 +403,7 @@
- }
-
- if (!gropn) {
--#if defined(__GLIBC__)
-+#if defined(__GLIBC__) || defined(__linux__)
- setgrent();
- #elif !defined(__INTERIX) && !defined(__CYGWIN__)
- setgroupent(1);