]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
libtool: Minor syntax and typo fixes
authorIleana Dumitrescu <ileanadumitrescu95@gmail.com>
Sat, 11 May 2024 07:52:47 +0000 (10:52 +0300)
committerIleana Dumitrescu <ileanadumitrescu95@gmail.com>
Sat, 11 May 2024 07:52:47 +0000 (10:52 +0300)
doc/notes.texi: Duplicate "to" removed.
build-aux/ltmain.in: Useless parentheses in cpp directive removed.

build-aux/ltmain.in
doc/notes.texi

index ff0f8758ef4f038d7babe955e652e5deb74d01dc..7e096a1a5a271f941cc2fb6bfcefc8e601c39cc7 100644 (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>
index a6cd1b9069d54e9a5603f5a211374a5484d5d56d..606c957bc6382f9dc3ae2a1fb53a70fbecc75ff0 100644 (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