diff options
-rw-r--r-- | adb/Android.bp | 2 | ||||
-rw-r--r-- | fastboot/Android.bp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/adb/Android.bp b/adb/Android.bp index 8710e9dc6..df2c0f965 100644 --- a/adb/Android.bp +++ b/adb/Android.bp @@ -270,6 +270,8 @@ cc_library { host_supported: true, compile_multilib: "both", min_sdk_version: "apex_inherit", + // This library doesn't use build::GetBuildNumber() + use_version_lib: false, srcs: [ "sysdeps/env.cpp", diff --git a/fastboot/Android.bp b/fastboot/Android.bp index 6673543d8..81ebf4392 100644 --- a/fastboot/Android.bp +++ b/fastboot/Android.bp @@ -251,7 +251,7 @@ cc_library_host_static { darwin: { srcs: ["usb_osx.cpp"], }, - linux_glibc: { + linux: { srcs: ["usb_linux.cpp"], }, }, |