]> granicus.if.org Git - curl/commitdiff
INSTALL: LDFLAGS=-Wl,-R/usr/local/ssl/lib
authorDaniel Stenberg <daniel@haxx.se>
Mon, 28 May 2018 21:54:19 +0000 (23:54 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 29 May 2018 05:59:24 +0000 (07:59 +0200)
... the older description doesn't work

Reported-by: Peter Varga
Fixes #2615
Closes #2616

docs/INSTALL.md

index 67a9378fffc445c790e39e02da7f07537f11a437..d1e708bd3a7069e32c37105d6518ebfeab4a141f 100644 (file)
@@ -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