From 0263e8895ef02e9514edd34216c8bc57c09dd87d Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Fri, 26 Sep 2014 12:31:10 +0200 Subject: [PATCH] do not install all tests this is a clumsy workaround for command-line arguments getting too long in a `make install` --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index defe2faf2f..e6cbbbd596 100644 --- a/Makefile.am +++ b/Makefile.am @@ -256,7 +256,7 @@ nobase_pkgdataACTIONS_DATA = $(shell find @srcdir@/js/actions -name "*.js" -prin nobase_pkgdataCOMMON_DATA = $(shell find @srcdir@/js/common -name "*.js" -print) nobase_pkgdataSERVER_DATA = $(shell find @srcdir@/js/server -name "*.js" -print) nobase_pkgdataCLIENT_DATA = $(shell find @srcdir@/js/client -name "*.js" -print) -nobase_pkgdataNODE_DATA = $(shell find @srcdir@/js/node -type f "(" -name .travis.yml -o -name .npmignore -o -print ")") +nobase_pkgdataNODE_DATA = $(shell find @srcdir@/js/node -type f "(" -name .travis.yml -o -name .npmignore -o -print ")" | grep -v "\(htmlparser2\|js-yaml\)/test/" ) nobase_pkgdataAPPS_DATA = $(shell find @srcdir@/js/apps/system -type f "(" -path "*/test/*" -o -path "*/test_data/*" -o -path "*/coverage/*" -o -print ")") if ENABLE_MRUBY