mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
the places that normal users will see:
- command line: --tool=foo (although --skin=foo still works)
- docs: removed all traces (included renaming coregrind_skins.html to
coregrind_tools.html)
- in the usage messages
- in error messages
Also did in in some places that I judged were unlikely to cause clashes with
existing workspaces:
- in the header comments of many files (eg. "This file is part of Memcheck, a
Valgrind tool for...")
- in the regtests script
- in the .supp files
- in AUTHORS
- in README_MISSING_SYSCALL_OR_IOCTL
Also update the AUTHORS file to mention Jeremy.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2027
22 lines
1.0 KiB
Bash
Executable File
22 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# small tool to help documentation writers.
|
|
# Copy docs out of an installation tree (`pwd`/Inst) back to the build tree
|
|
# since it is a lot easier to edit them in the installation tree.
|
|
# Use with care!
|
|
|
|
cp Inst/share/doc/valgrind/coregrind_core.html coregrind/docs
|
|
cp Inst/share/doc/valgrind/coregrind_intro.html coregrind/docs
|
|
cp Inst/share/doc/valgrind/coregrind_tools.html coregrind/docs
|
|
cp Inst/share/doc/valgrind/manual.html docs
|
|
cp Inst/share/doc/valgrind/ac_main.html addrcheck/docs
|
|
cp Inst/share/doc/valgrind/mc_main.html memcheck/docs
|
|
cp Inst/share/doc/valgrind/mc_techdocs.html memcheck/docs
|
|
cp Inst/share/doc/valgrind/cg_main.html cachegrind/docs
|
|
cp Inst/share/doc/valgrind/cg_techdocs.html cachegrind/docs
|
|
cp Inst/share/doc/valgrind/cc_main.html corecheck/docs
|
|
cp Inst/share/doc/valgrind/hg_main.html helgrind/docs
|
|
cp Inst/share/doc/valgrind/lk_main.html lackey/docs
|
|
cp Inst/share/doc/valgrind/nl_main.html none/docs
|
|
|