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 1999-11-12 06:24:54 +00:00
parent fa8e845d10
commit 79ac1cd829
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
Fri Nov 12 6:36:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* which_lib.c: Fix for bug reported by Pascal Bourguignon.
If 'shared=no' and 'debug=yes', but no debug library exists, then
find a static library.
Thu Nov 11 12:22:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* GNUstep.csh.in: Fix for typo reported by Pascal Bourguignon.

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;