2004-09-09 12:47:20 +00:00
|
|
|
#!/bin/sh
|
2005-03-22 15:29:25 +00:00
|
|
|
# Munge Perl requirements:
|
|
|
|
# - remove dependency on Config::Inifiles
|
|
|
|
# - only require File::Path >= 1.04, not >= 1.404
|
|
|
|
/usr/lib/rpm/perl.req $* |
|
|
|
|
sed -e '/perl(Config::IniFiles)/d' \
|
|
|
|
-e 's/perl(File::Path) >= 1.0404/perl(File::Path) >= 1.04/'
|
2004-09-09 12:47:20 +00:00
|
|
|
|
2005-03-22 15:29:25 +00:00
|
|
|
|