diff options
Diffstat (limited to 'sys-devel/pmake/files/pmake-1.98-skipdots.patch')
-rw-r--r-- | sys-devel/pmake/files/pmake-1.98-skipdots.patch | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sys-devel/pmake/files/pmake-1.98-skipdots.patch b/sys-devel/pmake/files/pmake-1.98-skipdots.patch deleted file mode 100644 index 6783a9799919..000000000000 --- a/sys-devel/pmake/files/pmake-1.98-skipdots.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -urN pmake-2.0.orig/dir.c pmake-2.0/dir.c ---- pmake-2.0.orig/dir.c 2005-02-08 09:26:28.932978574 -0500 -+++ pmake-2.0/dir.c 2005-02-08 09:36:18.208704201 -0500 -@@ -1528,6 +1528,8 @@ - Hash_InitTable (&p->files, -1); - - while ((dp = readdir (d)) != (struct dirent *) NULL) { -+ 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 |