X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FSConscript;fp=senf%2FSConscript;h=0eb33c694fba93a5d6536942ed3b283e1d7c3a07;hb=dabe8f95330ac77629aabcb710627af474b440de;hp=62838d199cedc26209ea347c1d80a398ad63e660;hpb=81bca7eaa075738ba2f2b7c36efaced331677836;p=senf.git diff --git a/senf/SConscript b/senf/SConscript index 62838d1..0eb33c6 100644 --- a/senf/SConscript +++ b/senf/SConscript @@ -9,6 +9,9 @@ import SENFSCons, glob, os if not env.GetOption('clean') and not os.path.exists("local_config.hh"): Execute(Touch("local_config.hh")) -SConscript(glob.glob("*/SConscript")) +# 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("Ext/SConscript") env.InstallSubdir(target = '$INCLUDEINSTALLDIR', source = [ 'config.hh' ])