From: Jim Meyering Date: Thu, 16 Jun 2005 09:15:23 +0000 (+0000) Subject: Finally remove support for --version-control=S (-V). X-Git-Tag: CPPI-1_12~589 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=74f54dae781a1c30b10452b05500a2a8cac6bd80;p=thirdparty%2Fcoreutils.git Finally remove support for --version-control=S (-V). It was deprecated nearly 6 years ago and has been warning users to switch to --backup=S since fileutils-4.0j. --- diff --git a/src/cp.c b/src/cp.c index b38032a621..d413bf5eef 100644 --- a/src/cp.c +++ b/src/cp.c @@ -138,7 +138,6 @@ static struct option const long_opts[] = {"target-directory", required_argument, NULL, 't'}, {"update", no_argument, NULL, 'u'}, {"verbose", no_argument, NULL, 'v'}, - {"version-control", required_argument, NULL, 'V'}, /* Deprecated. FIXME. */ {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, {NULL, 0, NULL, 0} @@ -814,7 +813,7 @@ main (int argc, char **argv) we'll actually use backup_suffix_string. */ backup_suffix_string = getenv ("SIMPLE_BACKUP_SUFFIX"); - while ((c = getopt_long (argc, argv, "abdfHilLprst:uvxPRS:TV:", + while ((c = getopt_long (argc, argv, "abdfHilLprst:uvxPRS:T", long_opts, NULL)) != -1) { @@ -835,13 +834,6 @@ main (int argc, char **argv) x.recursive = true; break; - case 'V': /* FIXME: this is deprecated. Remove it in 2001. */ - error (0, 0, - _("warning: --version-control (-V) is obsolete; support for\ - it\nwill be removed in some future release. Use --backup=%s instead." - ), optarg); - /* Fall through. */ - case 'b': make_backups = true; if (optarg) diff --git a/src/install.c b/src/install.c index b3d41293b0..49cc8d0eab 100644 --- a/src/install.c +++ b/src/install.c @@ -117,7 +117,6 @@ static struct option const long_options[] = {"strip", no_argument, NULL, 's'}, {"suffix", required_argument, NULL, 'S'}, {"target-directory", required_argument, NULL, 't'}, - {"version-control", required_argument, NULL, 'V'}, /* Deprecated. FIXME. */ {"verbose", no_argument, NULL, 'v'}, {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, @@ -217,18 +216,11 @@ main (int argc, char **argv) we'll actually use backup_suffix_string. */ backup_suffix_string = getenv ("SIMPLE_BACKUP_SUFFIX"); - while ((optc = getopt_long (argc, argv, "bcsDdg:m:o:pt:TvV:S:", long_options, + while ((optc = getopt_long (argc, argv, "bcsDdg:m:o:pt:TvS:", long_options, NULL)) != -1) { switch (optc) { - case 'V': /* FIXME: this is deprecated. Remove it in 2001. */ - error (0, 0, - _("warning: --version-control (-V) is obsolete; support for\ - it\nwill be removed in some future release. Use --backup=%s instead." - ), optarg); - /* Fall through. */ - case 'b': make_backups = true; if (optarg) diff --git a/src/ln.c b/src/ln.c index 9f257e91fe..13b0f7985a 100644 --- a/src/ln.c +++ b/src/ln.c @@ -120,7 +120,6 @@ static struct option const long_options[] = {"target-directory", required_argument, NULL, 't'}, {"symbolic", no_argument, NULL, 's'}, {"verbose", no_argument, NULL, 'v'}, - {"version-control", required_argument, NULL, 'V'}, /* Deprecated. FIXME. */ {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, {NULL, 0, NULL, 0} @@ -420,18 +419,11 @@ main (int argc, char **argv) symbolic_link = remove_existing_files = interactive = verbose = hard_dir_link = false; - while ((c = getopt_long (argc, argv, "bdfinst:vFS:TV:", long_options, NULL)) + while ((c = getopt_long (argc, argv, "bdfinst:vFS:T", long_options, NULL)) != -1) { switch (c) { - case 'V': /* FIXME: this is deprecated. Remove it in 2001. */ - error (0, 0, - _("warning: --version-control (-V) is obsolete; support for\ - it\nwill be removed in some future release. Use --backup=%s instead." - ), optarg); - /* Fall through. */ - case 'b': make_backups = true; if (optarg) diff --git a/src/mv.c b/src/mv.c index e9d3444dfe..490e57c06d 100644 --- a/src/mv.c +++ b/src/mv.c @@ -83,7 +83,6 @@ static struct option const long_options[] = {"target-directory", required_argument, NULL, 't'}, {"update", no_argument, NULL, 'u'}, {"verbose", no_argument, NULL, 'v'}, - {"version-control", required_argument, NULL, 'V'}, {GETOPT_HELP_OPTION_DECL}, {GETOPT_VERSION_OPTION_DECL}, {NULL, 0, NULL, 0} @@ -379,18 +378,11 @@ main (int argc, char **argv) we'll actually use backup_suffix_string. */ backup_suffix_string = getenv ("SIMPLE_BACKUP_SUFFIX"); - while ((c = getopt_long (argc, argv, "bfit:uvS:TV:", long_options, NULL)) + while ((c = getopt_long (argc, argv, "bfit:uvS:T", long_options, NULL)) != -1) { switch (c) { - case 'V': /* FIXME: this is deprecated. Remove it in 2001. */ - error (0, 0, - _("warning: --version-control (-V) is obsolete; support for\ - it\nwill be removed in some future release. Use --backup=%s instead." - ), optarg); - /* Fall through. */ - case 'b': make_backups = true; if (optarg)