From 03ee074db6ca16cf9d785435c836a8f878e997d0 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sat, 20 Apr 2013 02:59:47 +0200 Subject: [PATCH] build: both client and lib may need shipped headers in include/ For example, when sys/queue.h is incomplete. --- src/client/Makefile.am | 2 ++ src/lib/Makefile.am | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/client/Makefile.am b/src/client/Makefile.am index 66f4cfb0..44b6fefe 100644 --- a/src/client/Makefile.am +++ b/src/client/Makefile.am @@ -1,3 +1,5 @@ +AM_CFLAGS = -I $(top_srcdir)/include + sbin_PROGRAMS = lldpcli dist_man_MANS = lldpcli.8 lldpctl.8 diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index 837afaaa..47bb443f 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -1,3 +1,5 @@ +AM_CFLAGS = -I $(top_srcdir)/include + lib_LTLIBRARIES = liblldpctl.la include_HEADERS = lldpctl.h -- 2.39.5