Skip to content

Commit

Permalink
Use absolute paths for all arguments in curl configure line
Browse files Browse the repository at this point in the history
Refs: https://curl.se/mail/lib-2023-03/0017.html
Signed-off-by: Darshan Sen <raisinten@gmail.com>
  • Loading branch information
RaisinTen committed Mar 7, 2023
1 parent 1aabac5 commit 8085ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -68,7 +68,7 @@ commands:
command: |
cd curl
autoreconf -fi
./configure PKG_CONFIG_PATH="$(realpath $PWD/../openssl-install/lib/pkgconfig):$(realpath $PWD/../nghttp3-install/lib/pkgconfig):$(realpath $PWD/../ngtcp2-install/lib/pkgconfig)" --with-openssl=../openssl-install --with-nghttp3=../nghttp3-install --with-ngtcp2=../ngtcp2-install --prefix=$(realpath $PWD/../curl-install)
./configure PKG_CONFIG_PATH="$(realpath $PWD/../openssl-install/lib/pkgconfig):$(realpath $PWD/../nghttp3-install/lib/pkgconfig):$(realpath $PWD/../ngtcp2-install/lib/pkgconfig)" --with-openssl="$(realpath $PWD/../openssl-install)" --with-nghttp3="$(realpath $PWD/../nghttp3-install)" --with-ngtcp2="$(realpath $PWD/../ngtcp2-install)" --prefix=$(realpath $PWD/../curl-install)
make -j16
make install
Expand Down

0 comments on commit 8085ae9

Please sign in to comment.