Merge "Remove workaround for IPSec buildfile not working"

This commit is contained in:
Anton Hansson
2021-06-29 14:08:41 +00:00
committed by Gerrit Code Review

View File

@@ -95,10 +95,6 @@ for f in os.listdir(tmpdir):
with zipfile.ZipFile(os.path.join(tmpdir, f)) as zipFile: with zipfile.ZipFile(os.path.join(tmpdir, f)) as zipFile:
zipFile.extractall(target_dir) zipFile.extractall(target_dir)
# Work around broken IPsec build rules (b/190499958)
if repo == 'prebuilts/module_sdk/IPsec':
os.rename(os.path.join(target_dir, 'Android.bp'), os.path.join(target_dir, 'Android.bp.disabled'))
print('Created %s' % target_dir) print('Created %s' % target_dir)
created_dirs[repo].append(dir) created_dirs[repo].append(dir)