summaryrefslogtreecommitdiff
path: root/clang
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2015-11-16 10:34:08 +0100
committerJan Holesovsky <kendy@collabora.com>2015-11-16 10:34:08 +0100
commit409fc53ae78a04edcf7f1d7d3be1714590756bc4 (patch)
tree2c5582054cd9b21a35ea66b2ba2b9fd5e4760fb5 /clang
parent337b67a12aaa266c54725fb311d5239d27f0785a (diff)
clang: Use .new-prefix as the filename extension for the output.
Change-Id: I059be04639c0587a483da8336a8b688845c8441d
Diffstat (limited to 'clang')
-rw-r--r--clang/README4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/README b/clang/README
index d50be492..fc7cd318 100644
--- a/clang/README
+++ b/clang/README
@@ -66,10 +66,10 @@ Then run:
make -sr -j8 COMPILER_EXTERNAL_TOOL=1 FORCE_COMPILE_ALL=1 CCACHE_PREFIX=rename-wrapper RENAME_ARGS="-csv=$HOME/rename.csv"
----
-Once the rewriting is done, you can overwrite the original files with the .new ones with:
+Once the rewriting is done, you can overwrite the original files with the .new-prefix ones with:
----
-for i in $(find . -name "*.new"); do mv -f $i ${i%%.new}; done
+for i in $(find . -name "*.new-prefix"); do mv -f $i ${i%%.new-prefix}; done
----
// vim: ft=asciidoc