#! /bin/sh /usr/share/dpatch/dpatch-run ## 08-disable-multiple-jobs.dpatch by Tobias Toedter ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: The current system of detecting multiple CPUs and using them for ## DP: multiple jobs in parallel is not very robust and results in a FTBFS on ## DP: some architectures. @DPATCH@ diff -urNad trunk~/Makefile trunk/Makefile --- trunk~/Makefile 2009-02-26 20:15:29.000000000 +0000 +++ trunk/Makefile 2009-03-15 20:05:54.000000000 +0000 @@ -19,7 +19,7 @@ #============================================================================= REVISION = `cat mscore/mscore/revision.h` -CPUS = `grep -c processor /proc/cpuinfo` +#CPUS = `grep -c processor /proc/cpuinfo` PREFIX = "/usr/local" VERSION = "0.9.5b${REVISION}" @@ -37,7 +37,8 @@ ../mscore; \ make lupdate; \ make lrelease; \ - make -j ${CPUS}; \ + #make -j ${CPUS}; \ + make; \ else \ echo "build directory does already exist, please remove first with 'make clean'"; \ fi;