* cygcheck.cc (common_apps): Add crontab, vi, vim.

This commit is contained in:
Christopher Faylor 2005-12-29 19:23:46 +00:00
parent 77ae8757f7
commit 10e4168d84
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-12-29 Christopher Faylor <cgf@timesys.com>
* cygcheck.cc (common_apps): Add crontab, vi, vim.
2005-12-19 Igor Pechtchanski <pechtcha@cs.nyu.edu> 2005-12-19 Igor Pechtchanski <pechtcha@cs.nyu.edu>
* dump_setup.cc (package_find): Fix is_alias computation for "/usr/lib". * dump_setup.cc (package_find): Fix is_alias computation for "/usr/lib".

View File

@ -85,6 +85,7 @@ static common_apps[] = {
{"cat", 0}, {"cat", 0},
{"cp", 0}, {"cp", 0},
{"cpp", 1}, {"cpp", 1},
{"crontab", 0},
{"find", 0}, {"find", 0},
{"gcc", 0}, {"gcc", 0},
{"gdb", 0}, {"gdb", 0},
@ -101,6 +102,8 @@ static common_apps[] = {
{"sh", 0}, {"sh", 0},
{"tar", 0}, {"tar", 0},
{"test", 0}, {"test", 0},
{"vi", 0},
{"vim", 0},
{0, 0} {0, 0}
}; };