X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senfscons%2FSENFSCons.py;h=61f07eaa271e7d0dfcb1abb2ebb8ac0925d253a9;hb=63b650afb727cce067817ce9451eecb932446bf3;hp=d5742bf3b48cc6d68bd195dc533690b50f16a354;hpb=0a53d328bce9ddcd315ac69bf47771b78a9b69d4;p=senf.git diff --git a/senfscons/SENFSCons.py b/senfscons/SENFSCons.py index d5742bf..61f07ea 100644 --- a/senfscons/SENFSCons.py +++ b/senfscons/SENFSCons.py @@ -366,7 +366,8 @@ def InstallSourceIncludes(env, sources): target = env.Dir(env['INCLUDEINSTALLDIR']).Dir( env.Dir('.').get_path(env.Dir(env['INSTALL_BASE']))) install = env.InstallIncludes( target = target, - source = sources, + source = [ type(x) is str and env.File(x) or x + for x in sources ], INSTALL_BASE = env.Dir('.') ) env.Alias( 'install_all', install )