* spawn.cc (dll_suffixes): Add .exe and "no suffix" to the list.

This commit is contained in:
Corinna Vinschen 2006-02-01 08:44:15 +00:00
parent 4b84e3dcea
commit 0ca697dde1
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-02-01 Corinna Vinschen <corinna@vinschen.de>
* spawn.cc (dll_suffixes): Add .exe and "no suffix" to the list.
2006-01-31 Corinna Vinschen <corinna@vinschen.de>
* dlfcn.cc (check_path_access): Call find_exec with FE_DLL option.

View File

@ -47,6 +47,7 @@ static suffix_info exe_suffixes[] =
static suffix_info dll_suffixes[] =
{
suffix_info (".dll"),
suffix_info (".exe", 1), suffix_info ("", 1),
suffix_info (NULL)
};