summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.4.1-tar_t.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-03-26 21:53:15 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2008-03-26 21:53:15 +0000
commit9c078e173aa2ce9d386942e8acb6acf811eeeddf (patch)
tree4e75fb59cfd5a889f9c07197d4118ade21c406a2 /package/busybox/busybox-1.4.1-tar_t.patch
parent49a411ea7374a4f2bb5d8ed69b99d2cd5a6fee2e (diff)
downloadbuildroot-novena-9c078e173aa2ce9d386942e8acb6acf811eeeddf.tar.gz
buildroot-novena-9c078e173aa2ce9d386942e8acb6acf811eeeddf.zip
busybox: remove unused configs/patches
Diffstat (limited to 'package/busybox/busybox-1.4.1-tar_t.patch')
-rw-r--r--package/busybox/busybox-1.4.1-tar_t.patch76
1 files changed, 0 insertions, 76 deletions
diff --git a/package/busybox/busybox-1.4.1-tar_t.patch b/package/busybox/busybox-1.4.1-tar_t.patch
deleted file mode 100644
index c8e5d7826..000000000
--- a/package/busybox/busybox-1.4.1-tar_t.patch
+++ /dev/null
@@ -1,76 +0,0 @@
---- busybox-1.4.1/archival/tar.c Wed Jan 24 22:49:25 2007
-+++ busybox-1.4.1-tar_t/archival/tar.c Sun Feb 25 21:50:35 2007
-@@ -760,7 +760,9 @@
- const char *tar_filename = "-";
- unsigned opt;
- int verboseFlag = 0;
-+#if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM
- llist_t *excludes = NULL;
-+#endif
-
- /* Initialise default values */
- tar_handle = init_handle();
-@@ -773,7 +775,9 @@
- "tt:vv:" // count -t,-v
- "?:" // bail out with usage instead of error return
- "X::T::" // cumulative lists
-+#if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM
- "\xff::" // cumulative lists for --exclude
-+#endif
- USE_FEATURE_TAR_CREATE("c:") "t:x:" // at least one of these is reqd
- USE_FEATURE_TAR_CREATE("c--tx:t--cx:x--ct") // mutually exclusive
- SKIP_FEATURE_TAR_CREATE("t--x:x--t"); // mutually exclusive
-@@ -788,14 +792,15 @@
- USE_FEATURE_TAR_FROM( "T:X:")
- USE_FEATURE_TAR_GZIP( "z" )
- USE_FEATURE_TAR_COMPRESS("Z" )
-- ,
-- &base_dir, // -C dir
-- &tar_filename, // -f filename
-- USE_FEATURE_TAR_FROM(&(tar_handle->accept),) // T
-- USE_FEATURE_TAR_FROM(&(tar_handle->reject),) // X
-- USE_FEATURE_TAR_FROM(&excludes ,) // --exclude
-- &verboseFlag, // combined count for -t and -v
-- &verboseFlag // combined count for -t and -v
-+ , &base_dir // -C dir
-+ , &tar_filename // -f filename
-+ USE_FEATURE_TAR_FROM(, &(tar_handle->accept)) // T
-+ USE_FEATURE_TAR_FROM(, &(tar_handle->reject)) // X
-+#if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM
-+ , &excludes // --exclude
-+#endif
-+ , &verboseFlag // combined count for -t and -v
-+ , &verboseFlag // combined count for -t and -v
- );
-
- if (verboseFlag) tar_handle->action_header = header_verbose_list;
-@@ -828,17 +833,19 @@
- if (opt & OPT_COMPRESS)
- get_header_ptr = get_header_tar_Z;
-
-- if (ENABLE_FEATURE_TAR_FROM) {
-- tar_handle->reject = append_file_list_to_list(tar_handle->reject);
-- /* Append excludes to reject */
-- while (excludes) {
-- llist_t *temp = excludes->link;
-- excludes->link = tar_handle->reject;
-- tar_handle->reject = excludes;
-- excludes = temp;
-- }
-- tar_handle->accept = append_file_list_to_list(tar_handle->accept);
-+#if ENABLE_FEATURE_TAR_FROM
-+ tar_handle->reject = append_file_list_to_list(tar_handle->reject);
-+#if ENABLE_FEATURE_TAR_LONG_OPTIONS
-+ /* Append excludes to reject */
-+ while (excludes) {
-+ llist_t *next = excludes->link;
-+ excludes->link = tar_handle->reject;
-+ tar_handle->reject = excludes;
-+ excludes = next;
- }
-+#endif
-+ tar_handle->accept = append_file_list_to_list(tar_handle->accept);
-+#endif
-
- /* Check if we are reading from stdin */
- if (argv[optind] && *argv[optind] == '-') {