From efa3c2dbbb4ccf525673ff2fef600f76a2b3df11 Mon Sep 17 00:00:00 2001 From: Kamal Mostafa Date: Thu, 7 Nov 2019 10:20:58 -0800 Subject: [PATCH] UBUNTU: SAUCE: linux/dim: avoid library object filename clash BugLink: https://bugs.launchpad.net/bugs/1852637 Use dimlib.o (vs. dim.o) as the interim library object filename to avoid a clash with the actual dim.c which manifests as: make[2]: Circular lib/dim/dim.o <- lib/dim/dim.o dependency dropped. Signed-off-by: Kamal Mostafa Acked-by: Khaled Elmously Acked-by: Andrea Righi Signed-off-by: Stefan Bader --- lib/dim/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dim/Makefile b/lib/dim/Makefile index 1d6858a108cb..5b9bfaac7ac1 100644 --- a/lib/dim/Makefile +++ b/lib/dim/Makefile @@ -2,6 +2,6 @@ # DIM Dynamic Interrupt Moderation library # -obj-$(CONFIG_DIMLIB) += dim.o +obj-$(CONFIG_DIMLIB) += dimlib.o -dim-y := dim.o net_dim.o rdma_dim.o +dimlib-y := dim.o net_dim.o rdma_dim.o -- 2.39.2