summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-05-28 23:54:19 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-05-28 23:54:19 +0200
commitd42979a0371c1ba1dba4b35d3362cb7c397a8c7b (patch)
tree5806c7e4320cbfed21bfb3a833c1fe976e652b98
parent8541d02c967c993f6e36fd78c59c50b70315ac91 (diff)
downloadcurl-bagder/install-openssl-path.tar.gz
INSTALL: LDFLAGS=-Wl,-R/usr/local/ssl/libbagder/install-openssl-path
... the older description doesn't work Reported-by: Peter Varga Fixes #2615
-rw-r--r--docs/INSTALL.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md
index 67a9378ff..d1e708bd3 100644
--- a/docs/INSTALL.md
+++ b/docs/INSTALL.md
@@ -72,10 +72,9 @@ work:
If you have shared SSL libs installed in a directory where your run-time
linker doesn't find them (which usually causes configure failures), you can
-provide the -R option to ld on some operating systems to set a hard-coded
-path to the run-time linker:
+provide this option to gcc to set a hard-coded path to the run-time linker:
- LDFLAGS=-R/usr/local/ssl/lib ./configure --with-ssl
+ LDFLAGS=-Wl,-R/usr/local/ssl/lib ./configure --with-ssl
## More Options