libtool: Minor syntax and typo fixes

doc/notes.texi: Duplicate "to" removed.
build-aux/ltmain.in: Useless parentheses in cpp directive removed.
This commit is contained in:
Ileana Dumitrescu 2024-05-11 10:52:47 +03:00
parent 3280f27cda
commit 90710b139b
No known key found for this signature in database
GPG Key ID: 6570EA01146F7354
2 changed files with 2 additions and 2 deletions

View File

@ -3638,7 +3638,7 @@ EOF
#endif
#include <stdio.h>
#include <stdlib.h>
#if defined (_WIN32) && !defined (__GNUC__)
#if defined _WIN32 && !defined __GNUC__
# include <direct.h>
# include <process.h>
# include <io.h>

View File

@ -29,7 +29,7 @@ will generate the instantiations. For Portland pgCC version5, use
@item
For C++ code, it may be neccesary to specify a library if it is a dependency
of a link/compile flag. For example in GNU G++, if you want to use
@code{-fsanitize=address} you need to to specify the @code{-lasan} library,
@code{-fsanitize=address} you need to specify the @code{-lasan} library,
like so: @code{g++ -o libx.la -fsanitize=address -lasan -rpath [...]}.
@item