Skip to content
Snippets Groups Projects
Commit c294d9cc authored by Markus Blatt's avatar Markus Blatt
Browse files

Provided possibility to build only one module together with the ones it

depends on.


[[Imported from SVN: r4513]]
parent ab5cbbeb
Branches
Tags
No related merge requests found
......@@ -302,6 +302,15 @@ while test "x$1" != "x"; do
command=help
break
;;
--module=*)
if test "x$arg" == "x"; then
usage
echo "ERROR: Parameter for --opts is missing"
echo
exit 1;
fi
MODULE=$arg
;;
--debug) true ;;
*)
command=$option
......@@ -323,8 +332,13 @@ done
case "$command" in
update | autogen | configure | make | all | exec | nothing)
find_modules .
build_modules $command
find_modules .
if test "x$MODULE" != "x"; then
load_opts $command
_build_module run_$command $MODULE
else
build_modules $command
fi
;;
help)
usage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment