lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 25 lines 796 B view raw
1From e08583ddb8445241c38c88d828271be908d52f9f Mon Sep 17 00:00:00 2001 2From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= <bjorn.forsman@gmail.com> 3Date: Mon, 17 Feb 2014 20:52:50 +0000 4Subject: [PATCH 1/2] Import LD_LIBRARY_PATH to allow running 'scons check' 5 without 'chrpath' 6 7--- 8 SConstruct | 1 + 9 1 file changed, 1 insertion(+) 10 11diff --git a/SConstruct b/SConstruct 12index fe444a2..f73c87e 100644 13--- a/SConstruct 14+++ b/SConstruct 15@@ -220,6 +220,7 @@ import_env = ( 16 'STAGING_DIR', # Required by the OpenWRT and CeroWrt builds. 17 'STAGING_PREFIX', # Required by the OpenWRT and CeroWrt builds. 18 'WRITE_PAD', # So we can test WRITE_PAD values on the fly. 19+ 'LD_LIBRARY_PATH', # Allows running 'scons check' without 'chrpath' 20 ) 21 envs = {} 22 for var in import_env: 23-- 242.9.0 25