summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-08-10 09:24:31 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-08-10 09:24:31 +0000
commitca5b17b78f9a41ed01221422c096a34b3f26cbee (patch)
treeffe486b8a75213afe8038b0c3761f5860f6c67fa /sys-devel/pmake/files
parentFix gcc-4.4 issues, Bug #277409. (diff)
downloadgentoo-2-ca5b17b78f9a41ed01221422c096a34b3f26cbee.tar.gz
gentoo-2-ca5b17b78f9a41ed01221422c096a34b3f26cbee.tar.bz2
gentoo-2-ca5b17b78f9a41ed01221422c096a34b3f26cbee.zip
remove old
(Portage version: 2.2_rc37/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel/pmake/files')
-rw-r--r--sys-devel/pmake/files/02_all_mktemp.patch21
-rw-r--r--sys-devel/pmake/files/skipdots.patch22
2 files changed, 0 insertions, 43 deletions
diff --git a/sys-devel/pmake/files/02_all_mktemp.patch b/sys-devel/pmake/files/02_all_mktemp.patch
deleted file mode 100644
index 1e7726a7d6a3..000000000000
--- a/sys-devel/pmake/files/02_all_mktemp.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- pmake-1.45/mkdep.mktemp Fri May 11 14:08:35 2001
-+++ pmake-1.45/mkdep Fri May 11 14:10:03 2001
-@@ -68,17 +68,9 @@
- exit 1
- fi
-
--DTMP=/tmp/mkdep$$
-+DTMP=`/bin/mktemp -d /tmp/mkdepXXXXXX`
- TMP=$DTMP/mkdep
-
--um=`umask`
--umask 022
--if ! mkdir $DTMP ; then
-- echo failed to create tmp dir $DTMP
-- exit 1
--fi
--
--umask $um
- trap 'rm -rf $DTMP ; trap 2 ; kill -2 $$' 1 2 3 13 15
-
- if [ x$pflag = x ]; then
diff --git a/sys-devel/pmake/files/skipdots.patch b/sys-devel/pmake/files/skipdots.patch
deleted file mode 100644
index 0bf81a9eeb7e..000000000000
--- a/sys-devel/pmake/files/skipdots.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- pmake-1.45.orig/dir.c 1997-09-28 04:46:39.000000000 -0700
-+++ pmake-1.45/dir.c 2004-03-28 07:03:27.000000000 -0800
-@@ -1170,13 +1170,13 @@
- p->refCount = 1;
- Hash_InitTable (&p->files, -1);
-
-- /*
-- * Skip the first two entries -- these will *always* be . and ..
-- */
-- (void)readdir(d);
-- (void)readdir(d);
--
- while ((dp = readdir (d)) != (struct dirent *) NULL) {
-+ /*
-+ * Skip "." and ".."
-+ */
-+ if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, "..")) {
-+ continue;
-+ }
- #if defined(sun) && defined(d_ino) /* d_ino is a sunos4 #define for d_fileno */
- /*
- * The sun directory library doesn't check for a 0 inode