diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2016-11-10 23:37:04 -0200 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2016-11-10 23:47:19 -0200 |
commit | 67d1534318a59a2e97c077a20471e69e1eeb73c3 (patch) | |
tree | 0c9a51126e8263ce177637a52e1399facfcc5b06 /Makefile.am | |
parent | b34819bc0e054c7eb8054d763ae9ead4f2c5443a (diff) | |
download | kmod-67d1534318a59a2e97c077a20471e69e1eeb73c3.tar.gz kmod-67d1534318a59a2e97c077a20471e69e1eeb73c3.tar.bz2 kmod-67d1534318a59a2e97c077a20471e69e1eeb73c3.zip |
build: fix build with disabled test modules
install: cannot stat 'testsuite/module-playground/mod-loop-f.ko': No
such file or directory
Makefile:2881: recipe for target 'rootfs' failed
make[1]: *** [rootfs] Error 1
make[1]: *** Waiting for unfinished jobs....
Makefile:2101: recipe for target 'check-recursive' failed
We need to ship pre-compiled binaries so it's possible to run
"make check" on servers without kernel headers.
Also add them to EXTRA_DIST as other sources.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index d4eeb7e..981a1af 100644 --- a/Makefile.am +++ b/Makefile.am @@ -285,6 +285,8 @@ EXTRA_DIST += \ testsuite/module-playground/mod-loop-c.c \ testsuite/module-playground/mod-loop-d.c \ testsuite/module-playground/mod-loop-e.c \ + testsuite/module-playground/mod-loop-f.c \ + testsuite/module-playground/mod-loop-g.c \ testsuite/module-playground/mod-loop.h \ testsuite/module-playground/mod-simple.c \ testsuite/module-playground/mod-simple-i386.ko \ |