mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
419f15b060
Partially reverts eaa4db148d
. Used
together with nix-shell it results into unresolvable domains. For
example: `nix-shell -p libxml2` spawns a shell with non-working DNS.
chroot should remove such unpurities.
20 lines
583 B
Bash
20 lines
583 B
Bash
addXMLCatalogs () {
|
|
for kind in dtd xsl; do
|
|
if test -d $1/xml/$kind; then
|
|
for i in $(find $1/xml/$kind -name catalog.xml); do
|
|
export XML_CATALOG_FILES="$XML_CATALOG_FILES $i"
|
|
done
|
|
fi
|
|
done
|
|
}
|
|
|
|
if test -z "$libxmlHookDone"; then
|
|
libxmlHookDone=1
|
|
|
|
# Set up XML_CATALOG_FILES. An empty initial value prevents
|
|
# xmllint and xsltproc from looking in /etc/xml/catalog.
|
|
export XML_CATALOG_FILES
|
|
if test -z "$XML_CATALOG_FILES"; then XML_CATALOG_FILES=" "; fi
|
|
envHooks=(${envHooks[@]} addXMLCatalogs)
|
|
fi
|