* 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

@ -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)
};