Message ID | 20191018202302.8122-3-jmoyer@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | misc. cleanups | expand |
On Fri, Oct 18, 2019 at 04:23:00PM -0400, Jeff Moyer wrote: > Make <tags-variant> currently fails with: > > make[1]: *** No rule to make target 'libndctl.h', needed by 'tags-am'. Stop. > > The path to libndctl.h is wrong in ndctl/lib/Makefile.am. Fix it. > > Signed-off-by: Jeff Moyer <jmoyer@redhat.com> Reviewed-by: Ira Weiny <ira.weiny@intel.com> > --- > ndctl/lib/Makefile.am | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/ndctl/lib/Makefile.am b/ndctl/lib/Makefile.am > index fb75fda..e4eb006 100644 > --- a/ndctl/lib/Makefile.am > +++ b/ndctl/lib/Makefile.am > @@ -7,7 +7,7 @@ pkginclude_HEADERS = ../libndctl.h ../ndctl.h > lib_LTLIBRARIES = libndctl.la > > libndctl_la_SOURCES =\ > - libndctl.h \ > + ../libndctl.h \ > private.h \ > ../../util/log.c \ > ../../util/log.h \ > -- > 2.19.1 > _______________________________________________ > Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org > To unsubscribe send an email to linux-nvdimm-leave@lists.01.org
diff --git a/ndctl/lib/Makefile.am b/ndctl/lib/Makefile.am index fb75fda..e4eb006 100644 --- a/ndctl/lib/Makefile.am +++ b/ndctl/lib/Makefile.am @@ -7,7 +7,7 @@ pkginclude_HEADERS = ../libndctl.h ../ndctl.h lib_LTLIBRARIES = libndctl.la libndctl_la_SOURCES =\ - libndctl.h \ + ../libndctl.h \ private.h \ ../../util/log.c \ ../../util/log.h \
Make <tags-variant> currently fails with: make[1]: *** No rule to make target 'libndctl.h', needed by 'tags-am'. Stop. The path to libndctl.h is wrong in ndctl/lib/Makefile.am. Fix it. Signed-off-by: Jeff Moyer <jmoyer@redhat.com> --- ndctl/lib/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)