Remove workaround for IPSec buildfile not working

The bug has been fixed.

Bug: 190499958
Test: No
Change-Id: Iaa255586103daf76fa336560f3cd1b31668cf414
Merged-In: Iaa255586103daf76fa336560f3cd1b31668cf414
This commit is contained in:
Anton Hansson
2021-06-28 11:12:48 +01:00
parent a13f9cb518
commit 3886a9a7ed

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)