aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sebastian@pipping.org>2011-06-22 18:55:40 +0200
committerSebastian Pipping <sebastian@pipping.org>2011-06-22 18:55:40 +0200
commit9ef2c292157f3dbcca445e8e1bc35b20c6325407 (patch)
tree3f1759c2df6bf7aaf20fc31050d3ed842697a747
parentRefactoring: Turn to if-elifs constructs into case blocks (diff)
downloadgenkernel-9ef2c292157f3dbcca445e8e1bc35b20c6325407.tar.gz
genkernel-9ef2c292157f3dbcca445e8e1bc35b20c6325407.tar.bz2
genkernel-9ef2c292157f3dbcca445e8e1bc35b20c6325407.zip
Docs: Add in-code docs on runtask mode of compile_generic()
-rwxr-xr-xgen_compile.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/gen_compile.sh b/gen_compile.sh
index eb13dde3..281d672f 100755
--- a/gen_compile.sh
+++ b/gen_compile.sh
@@ -254,6 +254,7 @@ compile_generic() {
# ARGS='CC="ccache gcc"'
if [ "${argstype}" == 'runtask' ]
then
+ # Silent operation, forced -j1
print_info 2 "COMMAND: ${MAKE} ${MAKEOPTS} -j1 ${ARGS} ${target} $*" 1 0 1
eval ${MAKE} -s ${MAKEOPTS} -j1 "${ARGS}" ${target} $*
RET=$?