diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-12-21 12:40:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-12-21 12:40:06 +0000 |
commit | 2d85f131e1ec9181038692493bb9daca277edb45 (patch) | |
tree | 372e90d993fe3c4506ce2f9ba0e76de7295f44f1 /perl-install/commands.pm | |
parent | 68830f224661c15349199961a9ab1b05ef85d2e2 (diff) | |
download | drakx-2d85f131e1ec9181038692493bb9daca277edb45.tar drakx-2d85f131e1ec9181038692493bb9daca277edb45.tar.gz drakx-2d85f131e1ec9181038692493bb9daca277edb45.tar.bz2 drakx-2d85f131e1ec9181038692493bb9daca277edb45.tar.xz drakx-2d85f131e1ec9181038692493bb9daca277edb45.zip |
don't pass prefix, use $::prefix
Diffstat (limited to 'perl-install/commands.pm')
-rw-r--r-- | perl-install/commands.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm index dd7bc1ab5..d5e2fedab 100644 --- a/perl-install/commands.pm +++ b/perl-install/commands.pm @@ -481,7 +481,7 @@ sub bug { mount devices::make(detect_devices::floppy()), "/fd0"; require install_any; - output("/fd0/report.bug", install_any::report_bug("/mnt")); #- no other way :-( + output("/fd0/report.bug", install_any::report_bug()); umount "/fd0"; common::sync(); } |