diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-02-08 17:12:46 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-02-08 17:12:46 +0000 |
commit | f2c5f06e8ddd72c3f1dd5c356bfd978de3c6e6f1 (patch) | |
tree | ce7cf0e3ca278e76176f764bd2af6ffcd345632c /sys-devel/pmake/files | |
parent | Remove old ebuilds. (diff) | |
download | historical-f2c5f06e8ddd72c3f1dd5c356bfd978de3c6e6f1.tar.gz historical-f2c5f06e8ddd72c3f1dd5c356bfd978de3c6e6f1.tar.bz2 historical-f2c5f06e8ddd72c3f1dd5c356bfd978de3c6e6f1.zip |
Version bump.
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'sys-devel/pmake/files')
-rw-r--r-- | sys-devel/pmake/files/digest-pmake-1.98 | 2 | ||||
-rw-r--r-- | sys-devel/pmake/files/pmake-1.98-skipdots.patch | 12 |
2 files changed, 14 insertions, 0 deletions
diff --git a/sys-devel/pmake/files/digest-pmake-1.98 b/sys-devel/pmake/files/digest-pmake-1.98 new file mode 100644 index 000000000000..c62636be058e --- /dev/null +++ b/sys-devel/pmake/files/digest-pmake-1.98 @@ -0,0 +1,2 @@ +MD5 21353889a4f25b38ba436b68dcbeaa83 pmake_1.98.orig.tar.gz 261933 +MD5 9b9c6fdb519d46e68dea32b7ecde3f73 pmake_1.98-3.diff.gz 27151 diff --git a/sys-devel/pmake/files/pmake-1.98-skipdots.patch b/sys-devel/pmake/files/pmake-1.98-skipdots.patch new file mode 100644 index 000000000000..6783a9799919 --- /dev/null +++ b/sys-devel/pmake/files/pmake-1.98-skipdots.patch @@ -0,0 +1,12 @@ +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 |