[PATCH iproute2-next 3/6] lib: Correct object file dependencies
From: Serhey Popovych <hidden>
Date: 2018-01-30 16:52:57
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: Serhey Popovych <hidden>
Date: 2018-01-30 16:52:57
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
Neither internal libnetlink nor libgenl depends on ll_map.o: prepare for upcoming changes that brings much more cleaner dependency between utils.o and ll_map.o. Signed-off-by: Serhey Popovych <redacted> --- lib/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/Makefile b/lib/Makefile
index 7b34ed5..bab8cbf 100644
--- a/lib/Makefile
+++ b/lib/Makefile@@ -3,11 +3,11 @@ include ../config.mk CFLAGS += -fPIC -UTILOBJ = utils.o rt_names.o ll_types.o ll_proto.o ll_addr.o \ +UTILOBJ = utils.o rt_names.o ll_map.o ll_types.o ll_proto.o ll_addr.o \ inet_proto.o namespace.o json_writer.o json_print.o \ names.o color.o bpf.o exec.o fs.o -NLOBJ=libgenl.o ll_map.o libnetlink.o +NLOBJ=libgenl.o libnetlink.o all: libnetlink.a libutil.a
--
1.7.10.4