3
0
Fork 0
forked from mirrors/nixpkgs

opensp: display ftp_proxy and http_proxy during build

This commit is contained in:
John Wiegley 2015-01-02 14:50:51 -06:00 committed by Shea Levy
parent a00a8d0711
commit 60d0005a0c

View file

@ -9,6 +9,14 @@ addSGMLCatalogs () {
if test -z "$sgmlHookDone"; then
sgmlHookDone=1
# Set http_proxy and ftp_proxy to a invalid host to prevent
# xmllint and xsltproc from trying to download DTDs from the
# network even when --nonet is not given. That would be impure.
# (Note that .invalid is a reserved domain guaranteed not to
# work.)
export http_proxy=http://nodtd.invalid/
export ftp_proxy=http://nodtd.invalid/
export SGML_CATALOG_FILES
envHooks+=(addSGMLCatalogs)
fi