Fixup for bug 906101 breaking make clean on a CLOSED TREE. r=me

This commit is contained in:
Mike Hommey 2013-08-21 08:59:29 +09:00
parent 90c9ce278d
commit 96d7f379c9

View File

@ -338,7 +338,7 @@ class RecursiveMakeBackend(CommonBackend):
if obj.tier_static_dirs[tier]:
fh.write('tier_%s_staticdirs += %s\n' % (
tier, ' '.join(obj.tier_static_dirs[tier])))
fh.write('STATIC_DIRS += $(tier_%s_staticdirs)' % tier)
fh.write('STATIC_DIRS += $(tier_%s_staticdirs)\n' % tier)
static = ' '.join(obj.tier_static_dirs[tier])
fh.write('EXTERNAL_DIRS += %s\n' % static)