Message ID | 20240911172055.2862355-1-luiz.dentz@gmail.com |
---|---|
State | New |
Headers | show |
Series | [BlueZ,v1] build: Fix distcheck | expand |
Hello: This patch was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Wed, 11 Sep 2024 13:20:55 -0400 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This fixes the following errors like the following: > > ../../mesh/mesh-config-json.c:31:10: fatal error: mesh/missing.h: No such file or directory > 31 | #include "mesh/missing.h" > | ^~~~~~~~~~~~~~~~ > > [...] Here is the summary with links: - [BlueZ,v1] build: Fix distcheck https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=d8a4b126c1d7 You are awesome, thank you!
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=889450 ---Test result--- Test Summary: CheckPatch PASS 0.44 seconds GitLint FAIL 0.49 seconds BuildEll PASS 24.73 seconds BluezMake PASS 1771.21 seconds MakeCheck PASS 13.48 seconds MakeDistcheck PASS 184.43 seconds CheckValgrind PASS 258.38 seconds CheckSmatch PASS 362.58 seconds bluezmakeextell PASS 122.63 seconds IncrementalBuild PASS 1493.59 seconds ScanBuild PASS 1050.31 seconds Details ############################## Test: GitLint - FAIL Desc: Run gitlint Output: [BlueZ,v1] build: Fix distcheck WARNING: I3 - ignore-body-lines: gitlint will be switching from using Python regex 'match' (match beginning) to 'search' (match anywhere) semantics. Please review your ignore-body-lines.regex option accordingly. To remove this warning, set general.regex-style-search=True. More details: https://jorisroovers.github.io/gitlint/configuration/#regex-style-search 7: B1 Line exceeds max length (91>80): "../../mesh/mesh-config-json.c:31:10: fatal error: mesh/missing.h: No such file or directory" --- Regards, Linux Bluetooth
diff --git a/Makefile.mesh b/Makefile.mesh index e4c9fa6a32e6..f5e99a955c77 100644 --- a/Makefile.mesh +++ b/Makefile.mesh @@ -38,7 +38,7 @@ mesh_sources = mesh/mesh.h mesh/mesh.c \ mesh/keyring.h mesh/keyring.c \ mesh/rpl.h mesh/rpl.c \ mesh/prv-beacon.h mesh/prvbeac-server.c \ - mesh/mesh-defs.h + mesh/mesh-defs.h mesh/missing.h pkglibexec_PROGRAMS += mesh/bluetooth-meshd mesh/mesh.$(OBJEXT): ell/internal diff --git a/Makefile.tools b/Makefile.tools index 48bc47bf1925..71033d6388cf 100644 --- a/Makefile.tools +++ b/Makefile.tools @@ -328,7 +328,7 @@ tools_l2ping_LDADD = lib/libbluetooth-internal.la tools_bluemoon_SOURCES = tools/bluemoon.c monitor/bt.h tools_bluemoon_LDADD = src/libshared-mainloop.la -tools_hex2hcd_SOURCES = tools/hex2hcd.c +tools_hex2hcd_SOURCES = tools/hex2hcd.c tools/missing.h tools_mpris_proxy_SOURCES = tools/mpris-proxy.c tools_mpris_proxy_LDADD = gdbus/libgdbus-internal.la $(GLIB_LIBS) $(DBUS_LIBS)
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This fixes the following errors like the following: ../../mesh/mesh-config-json.c:31:10: fatal error: mesh/missing.h: No such file or directory 31 | #include "mesh/missing.h" | ^~~~~~~~~~~~~~~~ --- Makefile.mesh | 2 +- Makefile.tools | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)