From 758b0e80b1f137d2631b45e2533106bbc09f5810 Mon Sep 17 00:00:00 2001 From: Jan-Simon Moeller Date: Thu, 27 Jun 2024 12:47:48 +0000 Subject: Remove lin bus components We do no longer use lin bus components in the demo. Bug-AGL: SPEC-5189 Change-Id: Ie9b7a41f7f9b7e66b0adb26e3e26b1083a662b6a Signed-off-by: Jan-Simon Moeller Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/30043 Reviewed-by: Scott Murray --- .../files/0002-Change-Makefile-to-use-LDFLAGS.patch | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 recipes-support/lin-config/files/0002-Change-Makefile-to-use-LDFLAGS.patch (limited to 'recipes-support/lin-config/files/0002-Change-Makefile-to-use-LDFLAGS.patch') diff --git a/recipes-support/lin-config/files/0002-Change-Makefile-to-use-LDFLAGS.patch b/recipes-support/lin-config/files/0002-Change-Makefile-to-use-LDFLAGS.patch deleted file mode 100644 index 26364455a..000000000 --- a/recipes-support/lin-config/files/0002-Change-Makefile-to-use-LDFLAGS.patch +++ /dev/null @@ -1,20 +0,0 @@ -Use LDFLAGS when linking - -Use LDFLAGS when linking the output binary to quiet QA warnings due to -missing link flags. - -Upstream-Status: Pending - -Signed-off-by: Scott Murray - ---- a/Makefile 2019-11-05 11:08:11.060565285 +0000 -+++ b/Makefile 2019-11-05 11:09:38.663570084 +0000 -@@ -6,7 +6,7 @@ - objects = linc_parse_xml.o pcl_config.o sllin_config.o lin_config.o - - lin_config: $(objects) -- $(CC) $(objects) $(LIBS) -o lin_config -+ $(CC) $(LDFLAGS) $(objects) $(LIBS) -o lin_config - - %.o : %.c %.h - $(CC) $(CFLAGS) $(LIBS) -c $< -o $@ -- cgit 1.2.3-korg