diff options
author | Jim Meyering <jim@meyering.net> | 1999-10-16 14:44:17 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-10-16 14:44:17 +0000 |
commit | d25861b4daecedc82eb48aa00b6dd77983de2fe1 (patch) | |
tree | a8eb5a84e57e19e39782bce95d4bbf9653bd5f74 /tests/cp | |
parent | c9e90c55fa9948add1d37485d4d8160535e3b55a (diff) | |
download | coreutils-d25861b4daecedc82eb48aa00b6dd77983de2fe1.tar.xz |
Remove use of cp's now-deprecated -V option.
Use --b=simple instead of -b -V simple.
Diffstat (limited to 'tests/cp')
-rwxr-xr-x | tests/cp/backup-is-src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cp/backup-is-src b/tests/cp/backup-is-src index 13ec99290..e753e4a59 100755 --- a/tests/cp/backup-is-src +++ b/tests/cp/backup-is-src @@ -24,7 +24,7 @@ LANG=C export LANG # This cp command should exit nonzero. -cp -b -V simple a~ a > out 2>&1 && fail=1 +cp --b=simple a~ a > out 2>&1 && fail=1 sed "s,cp:,XXX:," out > out2 |