From cad663729201ff5432ddf07723e7ea36eec80895 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Tue, 14 Jan 2020 19:33:21 -0500 Subject: [PATCH] Build fix: dist target builds fails due to missing header file MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The path.h compatibility header is not distributed, causing builds from tarballs to fail. Add it to the SOURCES variable. Signed-off-by: Jérémie Galarneau Change-Id: Ib112c6016e9e682545572b8ab01728996c41ed52 --- src/common/compat/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/compat/Makefile.am b/src/common/compat/Makefile.am index 93528375d..557143006 100644 --- a/src/common/compat/Makefile.am +++ b/src/common/compat/Makefile.am @@ -9,4 +9,4 @@ endif libcompat_la_SOURCES = poll.h fcntl.h endian.h mman.h dirent.h \ socket.h compat-fcntl.c tid.h \ getenv.h string.h prctl.h paths.h netdb.h $(COMPAT) \ - time.h directory-handle.h directory-handle.c + time.h directory-handle.h directory-handle.c path.h -- 2.34.1