From 985ff79f18f5868d372d42ab7fd36622a9537153 Mon Sep 17 00:00:00 2001 From: "Manuel Amador (Rudd-O)" Date: Wed, 1 Sep 2010 14:38:57 -0700 Subject: [PATCH] only consider substituted files in construction of patches. reverse order of found files for patch, as shared goes first, so that virtspecific patch file overrides shared --- patches/wscript_build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/wscript_build b/patches/wscript_build index 0cdfb7302a3..7cca9b09902 100644 --- a/patches/wscript_build +++ b/patches/wscript_build @@ -4,7 +4,7 @@ bld.substitute("*/**",name="patchsubst") for virttech in Utils.to_list(bld.path.ant_glob("*",dir=True)): if virttech in ["shared","wscript_build"]: continue - patchfiles = bld.path.ant_glob('%s/** shared/**'%virttech,src=True,bld=True,dir=False,flat=True) + patchfiles = bld.path.ant_glob('shared/** %s/**'%virttech,src=False,bld=True,dir=False,flat=True) tgen = bld( features = 'tar',#Utils.tar_up, source = patchfiles,