diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-11-25 12:37:24 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-11-25 12:37:24 +0000 |
commit | 91cc91c1f95484f281f21bbb4243e3ccfa7e3386 (patch) | |
tree | 764bee4fbe474d5ec96643a3bc83286837e918fd /move/tree | |
parent | f5994c6cedc5b6eda73d874e3286924ee806a57a (diff) | |
download | drakx-91cc91c1f95484f281f21bbb4243e3ccfa7e3386.tar drakx-91cc91c1f95484f281f21bbb4243e3ccfa7e3386.tar.gz drakx-91cc91c1f95484f281f21bbb4243e3ccfa7e3386.tar.bz2 drakx-91cc91c1f95484f281f21bbb4243e3ccfa7e3386.tar.xz drakx-91cc91c1f95484f281f21bbb4243e3ccfa7e3386.zip |
allow DEBUG
Diffstat (limited to 'move/tree')
-rwxr-xr-x | move/tree/mdk_totem | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/move/tree/mdk_totem b/move/tree/mdk_totem index a95067442..862543004 100755 --- a/move/tree/mdk_totem +++ b/move/tree/mdk_totem @@ -56,7 +56,7 @@ my $needed_processes = join('|', map { quotemeta } '/sbin/devfsd', ); -if (find { $_->{cmdline} =~ /^($needed_processes)/ } @busy) { +if (!$ENV{DEBUG} && find { $_->{cmdline} =~ /^($needed_processes)/ } @busy) { exec 'totem' if $in->ask_okcancel('', N("You can only run with no CDROM support")); $in->exit(1); } |