From 06b48162f4e375bc4f8aec2f75d4f5354b3fe630 Mon Sep 17 00:00:00 2001 From: Steve Muckle Date: Fri, 29 May 2020 13:49:27 -0700 Subject: [PATCH] remove spurious comma from module-load-list-copy-paths call The module-load-list-copy-paths fn takes five parameters. Merged-In: I7d1736da1599e265793173a741053d8a09f1622f Change-Id: I9286c9e4ca81caf5392bc804dead718bd028b193 --- core/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Makefile b/core/Makefile index 7a3757cc05..1cefddfd33 100644 --- a/core/Makefile +++ b/core/Makefile @@ -337,7 +337,7 @@ ifneq ($(strip $(BOARD_VENDOR_RAMDISK_KERNEL_MODULES))$(strip $(BOARD_VENDOR_RAM # of copied modules represented by BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD # and BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD which are mined # from modules.load which will contain relative paths, represent load order. - ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,depmod_vendor_recovery_ramdisk),$(BOARD_VENDOR_RAMDISK_KERNEL_MODULES),$(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD),modules.load.recovery,$(TARGET_VENDOR_RAMDISK_OUT),)) + ALL_DEFAULT_INSTALLED_MODULES += $(call copy-many-files,$(call module-load-list-copy-paths,$(call intermediates-dir-for,PACKAGING,depmod_vendor_recovery_ramdisk),$(BOARD_VENDOR_RAMDISK_KERNEL_MODULES),$(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD),modules.load.recovery,$(TARGET_VENDOR_RAMDISK_OUT))) endif endif