diff options
author | 2012-05-06 20:00:27 +0100 | |
---|---|---|
committer | 2012-05-06 20:00:27 +0100 | |
commit | a3fec0e99a9e429ea24feff5cfa52c683dc51015 (patch) | |
tree | d68394dbd185709f31b06368882325743a14dbfa | |
parent | dbef6620988cd22658822855284fe63e19c1005a (diff) | |
download | paludis-a3fec0e99a9e429ea24feff5cfa52c683dc51015.tar.gz paludis-a3fec0e99a9e429ea24feff5cfa52c683dc51015.tar.xz |
Gentoo doesn't use -j1 for src_test
-rw-r--r-- | paludis/repositories/e/ebuild/0/src_test.bash | 4 | ||||
-rw-r--r-- | paludis/repositories/e/ebuild/2/src_test.bash | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/paludis/repositories/e/ebuild/0/src_test.bash b/paludis/repositories/e/ebuild/0/src_test.bash index a370f7350..cd6bebebc 100644 --- a/paludis/repositories/e/ebuild/0/src_test.bash +++ b/paludis/repositories/e/ebuild/0/src_test.bash @@ -26,10 +26,10 @@ src_test() echo "Makefile found, looking for potential test targets" if make -j1 -n check ; then echo "Found check target" - emake -j1 check || die "make check failed" + emake check || die "make check failed" elif make -j1 -n test ; then echo "Found test target" - emake -j1 test || die "make test failed" + emake test || die "make test failed" else echo "No check or test target, skipping tests" fi diff --git a/paludis/repositories/e/ebuild/2/src_test.bash b/paludis/repositories/e/ebuild/2/src_test.bash index f4bc43c5b..de0f5fd68 100644 --- a/paludis/repositories/e/ebuild/2/src_test.bash +++ b/paludis/repositories/e/ebuild/2/src_test.bash @@ -26,10 +26,10 @@ default_src_test() echo "Makefile found, looking for potential test targets" if make -j1 -n check ; then echo "Found check target" - emake -j1 check || die "make check failed" + emake check || die "make check failed" elif make -j1 -n test ; then echo "Found test target" - emake -j1 test || die "make test failed" + emake test || die "make test failed" else echo "No check or test target, skipping tests" fi |