Message ID | 1446047319-22887-1-git-send-email-matanb@mellanox.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
On 10/28/2015 11:48 AM, Matan Barak wrote: > From: Alaa Hleihel <alaa@mellanox.com> > > make distcheck failed because it searched for headers > in the src directory. > Added noinst_HEADERS to fix that. > > Change-Id: Ibc0949286a97ac8775156df6465e31fe301d27db > Signed-off-by: Alaa Hleihel <alaa@mellanox.com> > --- > Hi Doug, > > This fixes a "make distcheck" issue. make distcheck > was broken because it tried to use src/neigh.h and > src/nl1_compat.h header files. > > Regards, > Alaa and Matan Thanks, applied.
diff --git a/Makefile.am b/Makefile.am index c85e98a..7d22e06 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,6 +15,7 @@ src_libibverbs_la_SOURCES = src/cmd.c src/compat-1_0.c src/device.c src/init.c \ src/enum_strs.c if ! NO_RESOLVE_NEIGH src_libibverbs_la_SOURCES += src/neigh.c +noinst_HEADERS = src/neigh.h src/nl1_compat.h endif src_libibverbs_la_LDFLAGS = -version-info 1 -export-dynamic \ $(libibverbs_version_script)