* Add command line option to disable installation.

svn path=/trunk/kdenonbeta/kdecvs-build/; revision=313510
wilder
Michael Pyne 22 years ago
parent 463bc0cecc
commit bb3969fdab
  1. 8
      kdecvs-build

@ -380,6 +380,9 @@ v2, and includes ABSOLUTELY NO WARRANTY!!!
Options:
--no-cvs Skip contacting the CVS server.
--no-build Skip the build process.
--no-install Don't automatically install after build. Automatic
install will still happen if install-after-build is
set to true for the module in the config file.
--debug Activates debug mode.
--pretend (or -p) Don't actually contact the CVS server, run make,
or create/delete files and directories. Instead,
@ -430,6 +433,11 @@ DONE
last SWITCH;
};
/^--no-install$/ && do {
$global_opts{'install-after-build'} = 0;
last SWITCH;
};
/^--debug$/ && do {
$global_opts{'debug'} = 1;
last SWITCH;

Loading…
Cancel
Save