diff mbox series

[1/2] handlers: drop duplicate entry and sort the list in Makefile

Message ID 1532099153-3133-1-git-send-email-sbabic@denx.de
State Accepted
Headers show
Series [1/2] handlers: drop duplicate entry and sort the list in Makefile | expand

Commit Message

Stefano Babic July 20, 2018, 3:05 p.m. UTC
Signed-off-by: Stefano Babic <sbabic@denx.de>
---
 handlers/Makefile | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/handlers/Makefile b/handlers/Makefile
index f9a82ed..3845476 100644
--- a/handlers/Makefile
+++ b/handlers/Makefile
@@ -9,13 +9,12 @@ 
 # on the received image type.
 obj-y	+= dummy_handler.o
 obj-$(CONFIG_ARCHIVE) += archive_handler.o
+obj-$(CONFIG_BOOTLOADERHANDLER) += boot_handler.o
 obj-$(CONFIG_CFI)	+= flash_handler.o
 obj-$(CONFIG_CFIHAMMING1)+= flash_hamming1_handler.o
-obj-$(CONFIG_RAW)	+= raw_handler.o
-obj-$(CONFIG_UBIVOL)	+= ubivol_handler.o
 obj-$(CONFIG_LUASCRIPTHANDLER) += lua_scripthandler.o
-obj-$(CONFIG_SHELLSCRIPTHANDLER) += shell_scripthandler.o
-obj-$(CONFIG_RAW) += raw_handler.o
+obj-$(CONFIG_RAW)	+= raw_handler.o
 obj-$(CONFIG_REMOTE_HANDLER) += remote_handler.o
-obj-$(CONFIG_BOOTLOADERHANDLER) += boot_handler.o
+obj-$(CONFIG_SHELLSCRIPTHANDLER) += shell_scripthandler.o
 obj-$(CONFIG_SWUFORWARDER_HANDLER) += swuforward_handler.o
+obj-$(CONFIG_UBIVOL)	+= ubivol_handler.o