summaryrefslogtreecommitdiff
path: root/mali_pixel
diff options
context:
space:
mode:
authorDaniel Mentz <danielmentz@google.com>2021-09-14 14:52:54 -0700
committerDaniel Mentz <danielmentz@google.com>2021-09-14 15:42:08 -0700
commite20753685a79f74d2a209e28477dace4c8d32bd2 (patch)
tree000608fda661117e993fd5bf3eabc62c1fa4a7ba /mali_pixel
parent27a4210d06ada3c8e09c03dd9d7a531865a5aad6 (diff)
downloadgpu-e20753685a79f74d2a209e28477dace4c8d32bd2.tar.gz
mali_pixel: Remove duplicate make target "modules"
Because this makefile specifies the target "modules" explicitly in addition to using the automatic variable $(@) (target of the rule), the Linux kernel makefile was invoked with "modules modules" which led to the following error message: Makefile:180: target 'modules' given more than once in the same rule Fixes: bfab818 ("mali_mgm: Change default Make target from 'all' to 'modules'") Signed-off-by: Daniel Mentz <danielmentz@google.com> Change-Id: Ifab985793181c901925a8da009e84df7b95d84cb
Diffstat (limited to 'mali_pixel')
-rw-r--r--mali_pixel/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mali_pixel/Makefile b/mali_pixel/Makefile
index dbcf0de..57510ee 100644
--- a/mali_pixel/Makefile
+++ b/mali_pixel/Makefile
@@ -13,7 +13,7 @@ KBUILD_OPTIONS += CONFIG_MALI_PIXEL_STATS=n
KBUILD_OPTIONS += $(KBUILD_EXTRA) # Extra config if any
modules:
- $(MAKE) -C $(KERNEL_SRC) M=$(M) W=1 EXTRA_CFLAGS="-I$(M) -I$(M)/../common/include" modules $(KBUILD_OPTIONS) $(@)
+ $(MAKE) -C $(KERNEL_SRC) M=$(M) W=1 EXTRA_CFLAGS="-I$(M) -I$(M)/../common/include" $(KBUILD_OPTIONS) $(@)
modules_install:
$(MAKE) -C $(KERNEL_SRC) M=$(M) modules_install