diff options
author | Jim Meyering <jim@meyering.net> | 1999-10-23 15:32:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-10-23 15:32:01 +0000 |
commit | 6d1aa48746350c227c515d12c06f08e623e9a9b3 (patch) | |
tree | 149884c8c2a413ab669fa0c43d0a86133b530aac | |
parent | 02ba1920dd9fcb09b5934a0a9cde1f6b416ba942 (diff) | |
download | coreutils-6d1aa48746350c227c515d12c06f08e623e9a9b3.tar.xz |
label use of -V/--versin-control as a warning
-rw-r--r-- | src/cp.c | 5 | ||||
-rw-r--r-- | src/mv.c | 5 |
2 files changed, 8 insertions, 2 deletions
@@ -691,7 +691,10 @@ main (int argc, char **argv) break; case 'V': /* FIXME: this is deprecated. Remove it in 2001. */ - error (0, 0, _("obsolete option name replaced by --backup")); + 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': @@ -400,7 +400,10 @@ main (int argc, char **argv) break; case 'V': /* FIXME: this is deprecated. Remove it in 2001. */ - error (0, 0, _("obsolete option name replaced by --backup")); + 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': |