* spawn.cc (dll_suffixes): Add .exe and "no suffix" to the list.
This commit is contained in:
parent
4b84e3dcea
commit
0ca697dde1
|
@ -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>
|
2006-01-31 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* dlfcn.cc (check_path_access): Call find_exec with FE_DLL option.
|
* dlfcn.cc (check_path_access): Call find_exec with FE_DLL option.
|
||||||
|
|
|
@ -47,6 +47,7 @@ static suffix_info exe_suffixes[] =
|
||||||
static suffix_info dll_suffixes[] =
|
static suffix_info dll_suffixes[] =
|
||||||
{
|
{
|
||||||
suffix_info (".dll"),
|
suffix_info (".dll"),
|
||||||
|
suffix_info (".exe", 1), suffix_info ("", 1),
|
||||||
suffix_info (NULL)
|
suffix_info (NULL)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue