lol
1From 21e5295a633c8c450629106c4603b78b2de7d786 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= <bjorn.forsman@gmail.com>
3Date: Sat, 15 Mar 2014 15:08:01 +0100
4Subject: [PATCH 2/2] Import XML_CATALOG_FILES to be able to validate the
5 manual
6
7In nixos/nixpkgs, 'xmlto' depends on $XML_CATALOG_FILES to be able to
8validate XML documents. Because without it, it'll try to go online to
9download DTD's and builders don't have network access...
10---
11 SConstruct | 1 +
12 1 file changed, 1 insertion(+)
13
14diff --git a/SConstruct b/SConstruct
15index f73c87e..0d4b29d 100644
16--- a/SConstruct
17+++ b/SConstruct
18@@ -221,6 +221,7 @@ import_env = (
19 'STAGING_PREFIX', # Required by the OpenWRT and CeroWrt builds.
20 'WRITE_PAD', # So we can test WRITE_PAD values on the fly.
21 'LD_LIBRARY_PATH', # Allows running 'scons check' without 'chrpath'
22+ 'XML_CATALOG_FILES', # Enables validating the manual with 'xmlto' using nix build system
23 )
24 envs = {}
25 for var in import_env:
26--
272.9.0
28