Skip to content

Commit

Permalink
stdenv: set SSL_CERT_FILE only if it isn't already
Browse files Browse the repository at this point in the history
  • Loading branch information
abbradar committed Feb 25, 2016
1 parent 93f6af1 commit 39609a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/stdenv/generic/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,9 @@ paxmark() { true; }

# Prevent OpenSSL-based applications from using certificates in
# /etc/ssl.
export SSL_CERT_FILE=/no-cert-file.crt
if [ -z "$SSL_CERT_FILE" ]; then
export SSL_CERT_FILE=/no-cert-file.crt
fi


######################################################################
Expand Down

0 comments on commit 39609a0

Please sign in to comment.