View | Details | Raw Unified | Return to bug 36516
Collapse All | Expand All

(-)a/misc/translator/tmpl_process3.pl (-2 / +1 lines)
Lines 381-387 if ($action eq 'install') { Link Here
381
        } else {
381
        } else {
382
        # just copying the file
382
        # just copying the file
383
            mkdir_recursive($targetdir) unless -d $targetdir;
383
            mkdir_recursive($targetdir) unless -d $targetdir;
384
            system("cp -f $input $target");
384
            system("cp -f '$input' '$target'") == 0 or warn "Cannot copy $input to $target";
385
            print STDERR "Copying $input...\n" unless $quiet;
385
            print STDERR "Copying $input...\n" unless $quiet;
386
        }
386
        }
387
    }
387
    }
388
- 

Return to bug 36516