diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2019-03-11 10:44:10 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2019-03-11 10:44:10 +0000 |
commit | 1b1d372b423413dc8b2c5cca86240e9ae79afcc6 (patch) | |
tree | ceeff1dfeeb8a2123ef026a6ce3d87f0178155b1 | |
parent | 6ff32e143a64a326c61ee9ad8a61a76fdf5f0d32 (diff) | |
download | bcm5719-llvm-1b1d372b423413dc8b2c5cca86240e9ae79afcc6.tar.gz bcm5719-llvm-1b1d372b423413dc8b2c5cca86240e9ae79afcc6.zip |
Remove an unnecessary -f when cp'ing to a file that was just deleted. NFC.
llvm-svn: 355819
-rw-r--r-- | clang/test/Modules/relative-import-path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Modules/relative-import-path.c b/clang/test/Modules/relative-import-path.c index 4d988d89c32..045ab2bd3ce 100644 --- a/clang/test/Modules/relative-import-path.c +++ b/clang/test/Modules/relative-import-path.c @@ -1,5 +1,5 @@ // RUN: rm -rf %t -// RUN: cp -rf %S/Inputs/relative-import-path %t +// RUN: cp -r %S/Inputs/relative-import-path %t // RUN: cp %s %t/t.c // Use FileCheck, which is more flexible. |