summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-06-11 23:13:24 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-06-11 23:13:24 +0000
commit0405309dde44eb8c66d4f4612860a93e267e6c84 (patch)
tree68d07becbf309d7b0195e65807c7adff01a3116d /perl-install/modules.pm
parentf0797699d8777c03d97e8b21d49b4c2455149603 (diff)
downloaddrakx-backup-do-not-use-0405309dde44eb8c66d4f4612860a93e267e6c84.tar
drakx-backup-do-not-use-0405309dde44eb8c66d4f4612860a93e267e6c84.tar.gz
drakx-backup-do-not-use-0405309dde44eb8c66d4f4612860a93e267e6c84.tar.bz2
drakx-backup-do-not-use-0405309dde44eb8c66d4f4612860a93e267e6c84.tar.xz
drakx-backup-do-not-use-0405309dde44eb8c66d4f4612860a93e267e6c84.zip
- enhance perl2fcalls (which now handle /xxx(...)/ as a regexp in more cases)
- remove the use of /xxx (...)/x by /xxx(...)/ as perl2fcalls is getting smart => make gc happy which is very important, what would we be without him?
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 7a56cdd54..19842bea2 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -625,7 +625,7 @@ sub read_conf($;$) {
foreach (cat_($file)) {
do {
$c{$2}{$1} = $3;
- $$scsi = max($$scsi, $1 || 0) if /^\s*alias\s+scsi_hostadapter (\d*)/x && $scsi; #- space added to make perl2fcalls happy!
+ $$scsi = max($$scsi, $1 || 0) if /^\s*alias\s+scsi_hostadapter(\d*)/ && $scsi; #- space added to make perl2fcalls happy!
} if /^\s*(\S+)\s+(\S+)\s+(.*?)\s*$/;
}
#- cheating here: not handling aliases of aliases