mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 06:10:50 +00:00
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:
parent
fa8e845d10
commit
79ac1cd829
2 changed files with 7 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue