From 91ba2197ef75134c8784e7e8ebfaf3dafad17e26 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Fri, 2 Dec 2022 18:48:48 -0800 Subject: [PATCH] init/Android.bp: Sort cflags alphabetically Sort the compiler flags alphabetically before adding a new macro definition. Change-Id: If919333302817406a890c9622396ec96920adf29 Signed-off-by: Bart Van Assche --- init/Android.bp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/init/Android.bp b/init/Android.bp index 06f696e4c..50c85e6a6 100644 --- a/init/Android.bp +++ b/init/Android.bp @@ -109,21 +109,21 @@ libinit_cc_defaults { misc_undefined: ["signed-integer-overflow"], }, cflags: [ - "-DLOG_UEVENTS=0", - "-Wall", - "-Wextra", - "-Wno-unused-parameter", - "-Werror", - "-Wthread-safety", "-DALLOW_FIRST_STAGE_CONSOLE=0", "-DALLOW_LOCAL_PROP_OVERRIDE=0", "-DALLOW_PERMISSIVE_SELINUX=0", - "-DREBOOT_BOOTLOADER_ON_PANIC=0", - "-DWORLD_WRITABLE_KMSG=0", "-DDUMP_ON_UMOUNT_FAILURE=0", - "-DSHUTDOWN_ZERO_TIMEOUT=0", "-DINIT_FULL_SOURCES", "-DINSTALL_DEBUG_POLICY_TO_SYSTEM_EXT=0", + "-DLOG_UEVENTS=0", + "-DREBOOT_BOOTLOADER_ON_PANIC=0", + "-DSHUTDOWN_ZERO_TIMEOUT=0", + "-DWORLD_WRITABLE_KMSG=0", + "-Wall", + "-Werror", + "-Wextra", + "-Wno-unused-parameter", + "-Wthread-safety", ], product_variables: { debuggable: {