summaryrefslogtreecommitdiff
path: root/busybox/busybox-1.00-rc2/tar.patch
diff options
context:
space:
mode:
authorRene Wagner <rw@handhelds.org>2004-08-16 18:43:38 +0000
committerRene Wagner <rw@handhelds.org>2004-08-16 18:43:38 +0000
commit22d6e465050e6239b148ef3d685716e4ececc8fe (patch)
tree8b13d19bc53c0b3beee2307d8e0e0101c102dad7 /busybox/busybox-1.00-rc2/tar.patch
parent288e574b710ac9f2172f2d5294dbfffb41a76331 (diff)
Merge bk://openembedded@openembedded.bkbits.net/packages
into sugarcube.dyndns.org:/home/oe/oe/packages 2004/08/16 20:42:37+02:00 dyndns.org!reenoo bump busybox to 1.00-rc3; don't apply obsolete patches; add modprobe_fixup.patch which appears to fix aliases BKrev: 4121005aIZxfKx2GLIIM46Uhw80QAQ
Diffstat (limited to 'busybox/busybox-1.00-rc2/tar.patch')
-rw-r--r--busybox/busybox-1.00-rc2/tar.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/busybox/busybox-1.00-rc2/tar.patch b/busybox/busybox-1.00-rc2/tar.patch
deleted file mode 100644
index e080275184..0000000000
--- a/busybox/busybox-1.00-rc2/tar.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- busybox/archival/libunarchive/data_extract_all.c 2002-11-29 01:43:46.000000000 -0500
-+++ busybox-new/archival/libunarchive/data_extract_all.c 2002-12-03 18:38:21.000000000 -0500
-@@ -69,6 +68,9 @@
- case S_IFLNK:
- /* Symlink */
- res = symlink(file_header->link_name, file_header->name);
-+ if ((res == -1) && (errno == EEXIST) && (unlink(file_header->name) == 0)) {
-+ res = symlink(file_header->link_name, file_header->name);
-+ }
- if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
- perror_msg("Cannot create symlink from %s to '%s'", file_header->name, file_header->link_name);
- }
-@@ -78,6 +80,9 @@
- case S_IFCHR:
- case S_IFIFO:
- res = mknod(file_header->name, file_header->mode, file_header->device);
-+ if ((res == -1) && (errno == EEXIST) && (unlink(file_header->name) == 0)) {
-+ res = mknod(file_header->name, file_header->mode, file_header->device);
-+ }
- if ((res == -1) && !(archive_handle->flags & ARCHIVE_EXTRACT_QUIET)) {
- perror_msg("Cannot create node %s", file_header->name);
- }