mirror of
https://github.com/gnustep/tools-make.git
synced 2025-06-03 10:41:26 +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
aeee6ad3b7
commit
a1d8ff91a9
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>
|
Thu Nov 11 12:22:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||||
|
|
||||||
* GNUstep.csh.in: Fix for typo reported by Pascal Bourguignon.
|
* 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 1;
|
||||||
|
|
||||||
/* Return a static library that matches the 'library_name' */
|
/* 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 1;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue