From: Heiko Z. <smi...@us...> - 2015-11-29 19:07:53
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv25170 Modified Files: build-iso kmod Log Message: user more resources when creating ISO make sure we use the proper sed syntax Index: kmod =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/kmod,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- kmod 27 Nov 2015 17:15:11 -0000 1.4 +++ kmod 29 Nov 2015 19:07:50 -0000 1.5 @@ -17,6 +17,7 @@ case $1 in build ) ./configure --prefix=/usr -bindir=/bin --sysconfdir=/etc --with-rootlibdir=/lib \--with-xz --with-zlib || exit 1 + replace_str Makefile "sed -E" "sed -e" make $PMAKE all || exit 1 # install it in local system, because other programs could need it Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.93 retrieving revision 1.94 diff -u -d -r1.93 -r1.94 --- build-iso 27 Nov 2015 21:57:17 -0000 1.93 +++ build-iso 29 Nov 2015 19:07:50 -0000 1.94 @@ -18,10 +18,8 @@ # source functions and config source $MYDIR/settings -# make sure we use the greater of the 2 -if [ $CONFIG_PARALLEL_JOBS -lt $CONFIG_PMAKE ]; then - CONFIG_PARALLEL_JOBS=$CONFIG_PMAKE -fi +# let's make sure we use all the resources we got +let "CONFIG_PARALLEL_JOBS=${CONFIG_PARALLEL_JOBS}+${CONFIG_PMAKE}" case $1 in iso ) |