backing out an 'if ($flat)' test case which breaks the Mac packaging.

git-svn-id: svn://10.0.0.236/trunk@85442 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jj%netscape.com 2001-01-24 19:39:53 +00:00
parent cab17c7801
commit 1e560a9bf4

View File

@ -70,7 +70,7 @@ $return = GetOptions(
"help|h", \$help,
"debug=i", \$debug,
"verbose|v", \$verbose,
"flat|l", \$flat,
"flat|l", \$flat,
"<>", \&do_badargument
);
@ -211,11 +211,7 @@ sub do_delete
my ($targetpath) = $_[0];
my ($targetcomp) = $_[1];
my ($targetfile) = $_[2];
if ($flat) {
my ($target) = "$targetpath$PD$targetfile";
} else {
my ($target) = "$targetpath$PD$targetcomp$PD$targetfile";
}
my ($target) = "$targetpath$PD$targetcomp$PD$targetfile";
($debug >= 2) && print "do_delete():\n";
($debug >= 1) && print "-$targetfile\n";