aboutsummaryrefslogtreecommitdiff
path: root/docs/KNOWN_BUGS
diff options
context:
space:
mode:
authorSebastian Mundry <mundry@outlook.com>2016-09-30 20:34:21 +0200
committerDaniel Stenberg <daniel@haxx.se>2016-09-30 20:50:55 +0200
commit9eda44a2004af0826ab46594da88e7b0ce58fd38 (patch)
treeae34ccf65f92ed07b0fc4772185676bcb03a86d8 /docs/KNOWN_BUGS
parentdd42963a52f25dcd35078451cf8204e9a5f0b21b (diff)
KNOWN_BUGS: Fix typos in section 5.8.
Closes #1046
Diffstat (limited to 'docs/KNOWN_BUGS')
-rw-r--r--docs/KNOWN_BUGS10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS
index 923197544..7bb1496eb 100644
--- a/docs/KNOWN_BUGS
+++ b/docs/KNOWN_BUGS
@@ -365,16 +365,16 @@ problems may have been fixed or changed somewhat since this was written!
When the configure script checks for third-party libraries, it adds those
directories to the LDFLAGS variable and then tries linking to see if it
works. When successful, the found directory is kept in the LDFLAGS variable
- when the scripts continues to execute and do more tests and possibly check
- for more libraries.
+ when the script continues to execute and do more tests and possibly check for
+ more libraries.
This can make subsequent checks for libraries wrongly detect another
- installtion in a directory that was previously added to LDFLAGS by another
+ installation in a directory that was previously added to LDFLAGS by another
library check!
- A possibly better way to do these checks would be keep the pristine LDFLAGS
+ A possibly better way to do these checks would be to keep the pristine LDFLAGS
even after successful checks and instead add those verified paths to a
- separate variable that only after all library checks have been performed get
+ separate variable that only after all library checks have been performed gets
appended to LDFLAGS.