From: Daniel Stenberg Date: Mon, 28 May 2018 21:54:19 +0000 (+0200) Subject: INSTALL: LDFLAGS=-Wl,-R/usr/local/ssl/lib X-Git-Tag: curl-7_61_0~110 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c10f3a1e0bdc287767eb13541756162a105f0f50;p=thirdparty%2Fcurl.git INSTALL: LDFLAGS=-Wl,-R/usr/local/ssl/lib ... the older description doesn't work Reported-by: Peter Varga Fixes #2615 Closes #2616 --- diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 67a9378fff..d1e708bd3a 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