From d8a4b126c1d7ef1cf8994681ccb413b59bee29b5 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 11 Sep 2024 13:19:54 -0400 Subject: [PATCH] build: Fix distcheck 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(-) diff --git a/Makefile.mesh b/Makefile.mesh index e4c9fa6a3..f5e99a955 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 48bc47bf1..71033d638 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) -- 2.47.3