diff options
author | Christopher Ferris <cferris@google.com> | 2014-09-03 19:48:48 -0700 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2014-09-04 16:13:42 -0700 |
commit | 51448eb39ef28b6c0314668ce22aa1f4aa116e8d (patch) | |
tree | f989116ca23dd53eb9885917d119e3dc5bf66e30 /fastbootd | |
parent | 35a76df583a07524bec5ccaae8082a00e0c06867 (diff) | |
download | system_core-51448eb39ef28b6c0314668ce22aa1f4aa116e8d.zip system_core-51448eb39ef28b6c0314668ce22aa1f4aa116e8d.tar.gz system_core-51448eb39ef28b6c0314668ce22aa1f4aa116e8d.tar.bz2 |
Add -Wno-deprecated-declarations to makefiles.
This is in preparation for an update to the uapi v3.16.1
kernel headers that marks the structure usb_functionfs_descs_head
as deprecated.
Change-Id: I25d2f32ce8e95e038e6df201ce2f8126f5a8b6fa
Diffstat (limited to 'fastbootd')
-rw-r--r-- | fastbootd/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fastbootd/Android.mk b/fastbootd/Android.mk index 6aa7400..bccac68 100644 --- a/fastbootd/Android.mk +++ b/fastbootd/Android.mk @@ -42,7 +42,7 @@ LOCAL_SRC_FILES := \ LOCAL_MODULE := fastbootd LOCAL_MODULE_TAGS := optional -LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter -DFLASH_CERT +LOCAL_CFLAGS := -Wall -Werror -Wno-unused-parameter -Wno-deprecated-declarations -DFLASH_CERT LOCAL_LDFLAGS := -ldl LOCAL_STATIC_LIBRARIES := \ |