diff options
author | Sebastian Pipping <sebastian@pipping.org> | 2011-06-22 18:55:40 +0200 |
---|---|---|
committer | Sebastian Pipping <sebastian@pipping.org> | 2011-06-22 18:55:40 +0200 |
commit | 9ef2c292157f3dbcca445e8e1bc35b20c6325407 (patch) | |
tree | 3f1759c2df6bf7aaf20fc31050d3ed842697a747 | |
parent | Refactoring: Turn to if-elifs constructs into case blocks (diff) | |
download | genkernel-9ef2c292157f3dbcca445e8e1bc35b20c6325407.tar.gz genkernel-9ef2c292157f3dbcca445e8e1bc35b20c6325407.tar.bz2 genkernel-9ef2c292157f3dbcca445e8e1bc35b20c6325407.zip |
Docs: Add in-code docs on runtask mode of compile_generic()
-rwxr-xr-x | gen_compile.sh | 1 |
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=$? |