From: Frank Mori Hess Date: Thu, 19 Apr 2007 15:15:32 +0000 (+0000) Subject: ignore errors from kernel's make modules in all-local, to X-Git-Tag: r0_7_74~107 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=256d3b57947d5e765352db69afacc282882df128;p=comedi.git ignore errors from kernel's make modules in all-local, to avoid failure of make install on nfs filesystem with root_squash --- diff --git a/comedi/Makefile.am b/comedi/Makefile.am index aef04126..caae487c 100644 --- a/comedi/Makefile.am +++ b/comedi/Makefile.am @@ -5,8 +5,10 @@ CLEANFILES = Modules.symvers if CONFIG_KBUILD module_PROGRAMS = +#ignore errors from kernel's make modules in all-local, to avoid failure of make install +#on nfs filesystem with root_squash all-local: comedi_kbuild.inc - $(MAKE) -I@abs_builddir@ -C $(LINUX_DIR) M=@abs_builddir@ CC="$(LINUX_CC) -I@abs_top_srcdir@/ \ + -$(MAKE) -I@abs_builddir@ -C $(LINUX_DIR) M=@abs_builddir@ CC="$(LINUX_CC) -I@abs_top_srcdir@/ \ -I@abs_top_srcdir@/include $(RTAI_CFLAGS) $(RTLINUX_CFLAGS)" V=1 modules install-data-local: comedi_kbuild.inc $(MAKE) -I@abs_builddir@ -C $(LINUX_DIR) M=@abs_builddir@ CC="$(LINUX_CC) -I@abs_top_srcdir@/ \