View | Details | Raw Unified | Return to bug 236061
Collapse All | Expand All

(-)devel/jsoncpp/files/patch-SConstruct (-1 / +6 lines)
Lines 38-44 Link Here
38
 if 'TarGz' in env['BUILDERS']:
38
 if 'TarGz' in env['BUILDERS']:
39
 	class SrcDistAdder:
39
 	class SrcDistAdder:
40
 		def __init__( self, env ):
40
 		def __init__( self, env ):
41
@@ -164,7 +170,7 @@ env['SRCDIST_ADD'] = SrcDistAdder( env )
41
@@ -164,11 +170,11 @@ env['SRCDIST_ADD'] = SrcDistAdder( env )
42
 env['SRCDIST_TARGET'] = os.path.join( DIST_DIR, 'jsoncpp-src-%s.tar.gz' % env['JSONCPP_VERSION'] )
42
 env['SRCDIST_TARGET'] = os.path.join( DIST_DIR, 'jsoncpp-src-%s.tar.gz' % env['JSONCPP_VERSION'] )
43
                       
43
                       
44
 env_testing = env.Clone( )
44
 env_testing = env.Clone( )
Lines 47-52 Link Here
47
 
47
 
48
 def buildJSONExample( env, target_sources, target_name ):
48
 def buildJSONExample( env, target_sources, target_name ):
49
     env = env.Clone()
49
     env = env.Clone()
50
-    env.Append( CPPPATH = ['#'] )
51
+    #env.Append( CPPPATH = ['#'] )
52
     exe = env.Program( target=target_name,
53
                        source=target_sources )
54
     env['SRCDIST_ADD']( source=[target_sources] )
50
@@ -187,14 +193,14 @@ def buildUnitTests( env, target_sources,
55
@@ -187,14 +193,14 @@ def buildUnitTests( env, target_sources,
51
     env.AlwaysBuild( check_alias_target )
56
     env.AlwaysBuild( check_alias_target )
52
 
57
 

Return to bug 236061