diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2019-10-29 08:20:14 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-10-29 22:51:07 +0100 |
commit | 4011802b35638e311e548e8893fa74373275145a (patch) | |
tree | 160e27a2d7e61fb76b8f7764e0b30086d1dbf4a5 | |
parent | 0cbd6f8df72cb425e431312d91250d86df83b60b (diff) | |
download | curl-4011802b35638e311e548e8893fa74373275145a.tar.gz |
INSTALL: add missing space for configure commands
Closes #4539
-rw-r--r-- | docs/INSTALL.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 8b9f08d34..78d632c70 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -68,12 +68,12 @@ you have pkg-config installed, set the pkg-config path first, like this: Without pkg-config installed, use this: - ./configure --with-ssl=/opt/OpenSSL + ./configure --with-ssl=/opt/OpenSSL If you insist on forcing a build without SSL support, even though you may have OpenSSL installed in your system, you can run configure like this: - ./configure --without-ssl + ./configure --without-ssl If you have OpenSSL installed, but with the libraries in one place and the header files somewhere else, you have to set the `LDFLAGS` and `CPPFLAGS` |