Merge "Remove workaround for IPSec buildfile not working" am: f30dbe85d7

Original change: https://android-review.googlesource.com/c/platform/packages/modules/common/+/1749721

Change-Id: I2ddfb1888f0270a867b72d3da1ef90f48e473d48
This commit is contained in:
Anton Hansson
2021-06-29 14:24:36 +00:00
committed by Automerger Merge Worker

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)