From: Ileana Dumitrescu Date: Sat, 11 May 2024 07:52:47 +0000 (+0300) Subject: libtool: Minor syntax and typo fixes X-Git-Tag: v2.5.0~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=90710b139b3119f78ecf403648a78ba5a03cb524;p=thirdparty%2Flibtool.git libtool: Minor syntax and typo fixes doc/notes.texi: Duplicate "to" removed. build-aux/ltmain.in: Useless parentheses in cpp directive removed. --- diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in index ff0f8758e..7e096a1a5 100644 --- a/build-aux/ltmain.in +++ b/build-aux/ltmain.in @@ -3638,7 +3638,7 @@ EOF #endif #include #include -#if defined (_WIN32) && !defined (__GNUC__) +#if defined _WIN32 && !defined __GNUC__ # include # include # include diff --git a/doc/notes.texi b/doc/notes.texi index a6cd1b906..606c957bc 100644 --- a/doc/notes.texi +++ b/doc/notes.texi @@ -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