X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FSConscript;h=e022ad39fbb49183d57a7a3f95ba7da1138e0fe6;hb=f7f08ce8a2ffd9a8004ab04a22a8ed434c0812f7;hp=0eb33c694fba93a5d6536942ed3b283e1d7c3a07;hpb=dabe8f95330ac77629aabcb710627af474b440de;p=senf.git diff --git a/senf/SConscript b/senf/SConscript index 0eb33c6..e022ad3 100644 --- a/senf/SConscript +++ b/senf/SConscript @@ -1,7 +1,7 @@ # -*- python -*- Import('env') -import SENFSCons, glob, os +import SENFSCons, os ########################################################################### @@ -11,7 +11,8 @@ if not env.GetOption('clean') and not os.path.exists("local_config.hh"): # Ext/SConscript is last so it can depend on env vars set by any other script # (e.g. $PACKET_BUNDLES) -SConscript(list(set(glob.glob("*/SConscript")) - set(("Ext/SConscript",)))) +SConscript(sorted(list(set(env.Glob("*/SConscript", strings=True)) - set(("Ext/SConscript",))))) SConscript("Ext/SConscript") -env.InstallSubdir(target = '$INCLUDEINSTALLDIR', source = [ 'config.hh' ]) +env.InstallSubdir(target = '$INCLUDEINSTALLDIR', + source = sorted(env.Glob("*.hh", strings=True)))