Merge branch 'master' into froyo-release

This commit is contained in:
The Android Automerger 2010-03-18 08:07:26 -07:00
commit 83815532e0
3 changed files with 8 additions and 1 deletions

View File

@ -689,6 +689,7 @@ $(call dist-for-goals, droid, \
$(INSTALLED_FILES_FILE) \
$(INSTALLED_BUILD_PROP_TARGET) \
$(BUILT_TARGET_FILES_PACKAGE) \
$(INSTALLED_ANDROID_INFO_TXT_TARGET) \
)
# Tests are installed in userdata.img. If we're building the tests

View File

@ -82,6 +82,12 @@ for fn in args:
if t.tagname in by_tagname:
orig = by_tagname[t.tagname]
# Allow an explicit tag number to define an implicit tag number
if orig.tagnum is None:
orig.tagnum = t.tagnum
elif t.tagnum is None:
t.tagnum = orig.tagnum
if (t.tagnum == orig.tagnum and
t.description == orig.description):
# if the name and description are identical, issue a warning

View File

@ -153,7 +153,7 @@ class Item:
suffix = { False: "", True: "/" }
input = "".join(["%s%s\n" % (i.name, suffix[i.dir])
for i in cls.ITEMS.itervalues() if i.name])
output2, error = p.communicate(input)
output, error = p.communicate(input)
assert not error
for line in output.split("\n"):