diff options
| author | 2021-12-16 15:48:55 -0500 | |
|---|---|---|
| committer | 2021-12-16 16:21:23 -0500 | |
| commit | 9460b46ea28e0a3b0054f7aa7fc3e3d1fefce1bf (patch) | |
| tree | ddd27d1c37ce180dbaa7a5f5a68e966cf97e3893 | |
| parent | a6628d24c4373fd2f81ea8362cd9d124b2ec44c4 (diff) | |
Fix typo in bp2build denylist.
Test: m bp2build and ensure libnativehelper_compat_libc++ not converted
Change-Id: I3dddda6c19a0105aa89f2015ae329935862ef73e
| -rw-r--r-- | android/bazel.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/bazel.go b/android/bazel.go index 9a966b617..851a305cd 100644 --- a/android/bazel.go +++ b/android/bazel.go @@ -364,7 +364,7 @@ var ( // Per-module denylist to always opt modules out of both bp2build and mixed builds. bp2buildModuleDoNotConvertList = []string{ - "libnativehelper_compat_libc", // Broken compile: implicit declaration of function 'strerror_r' is invalid in C99 + "libnativehelper_compat_libc++", // Broken compile: implicit declaration of function 'strerror_r' is invalid in C99 "libandroid_runtime_lazy", // depends on unconverted modules: libbinder_headers "libcmd", // depends on unconverted modules: libbinder |