summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-06-16 09:15:23 +0000
committerJim Meyering <jim@meyering.net>2005-06-16 09:15:23 +0000
commit74f54dae781a1c30b10452b05500a2a8cac6bd80 (patch)
tree389a6768ffaebf91c7560396fdf9832ed25f87c2 /src/install.c
parent154e1cc93083c8c217287ee6f25e86f826b148d2 (diff)
downloadcoreutils-74f54dae781a1c30b10452b05500a2a8cac6bd80.tar.xz
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.
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/install.c b/src/install.c
index b3d41293b..49cc8d0ea 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)