Minor bugfix in library lookup

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@5164 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-11-12 06:24:54 +00:00
parent aeee6ad3b7
commit a1d8ff91a9
2 changed files with 7 additions and 1 deletions

View file

@ -394,7 +394,7 @@ int search_for_library_in_directory (char* path)
return 1;
/* Return a static library that matches the 'library_name' */
if (search_for_library_with_type_in_directory (0, path, libext))
if (search_for_library_with_type_in_directory ('s', path, libext))
return 1;
return 0;