summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-06-17 03:35:45 +0000
committerMike Frysinger <vapier@gentoo.org>2005-06-17 03:35:45 +0000
commit6e937d7a816f6fbf99162ffea8f4390d4cccd8bc (patch)
tree6af4910d94a622cd1d84fbb7b6c8d54426e5eecf /app-arch/tar/files
parentFix for Bug 96321 (diff)
downloadgentoo-2-6e937d7a816f6fbf99162ffea8f4390d4cccd8bc.tar.gz
gentoo-2-6e937d7a816f6fbf99162ffea8f4390d4cccd8bc.tar.bz2
gentoo-2-6e937d7a816f6fbf99162ffea8f4390d4cccd8bc.zip
Make --newer option not so verbose #86467 by Johny.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-arch/tar/files')
-rw-r--r--app-arch/tar/files/tar-1.15.1-less-verbose-newer.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/app-arch/tar/files/tar-1.15.1-less-verbose-newer.patch b/app-arch/tar/files/tar-1.15.1-less-verbose-newer.patch
new file mode 100644
index 000000000000..34777aebdcc5
--- /dev/null
+++ b/app-arch/tar/files/tar-1.15.1-less-verbose-newer.patch
@@ -0,0 +1,20 @@
+http://bugs.gentoo.org/show_bug.cgi?id=86467
+http://lists.gnu.org/archive/html/bug-tar/2005-03/msg00001.html
+
+Index: src/create.c
+===================================================================
+RCS file: /cvsroot/tar/tar/src/create.c,v
+retrieving revision 1.92
+retrieving revision 1.93
+diff -u -p -r1.92 -r1.93
+--- src/create.c 15 Feb 2005 15:24:35 -0000 1.92
++++ src/create.c 3 Mar 2005 23:13:14 -0000 1.93
+@@ -1397,7 +1397,7 @@ dump_file0 (struct tar_stat_info *st, ch
+ && OLDER_STAT_TIME (st->stat, m)
+ && (!after_date_option || OLDER_STAT_TIME (st->stat, c)))
+ {
+- if (!incremental_option)
++ if (!incremental_option && verbose_option)
+ WARN ((0, 0, _("%s: file is unchanged; not dumped"),
+ quotearg_colon (p)));
+ return;