858b2c2264
- fix perl File::Path dependency in filter-requires.sh
10 lines
264 B
Bash
Executable File
10 lines
264 B
Bash
Executable File
#!/bin/sh
|
|
# 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/'
|
|
|
|
|