Hi,
I'd like to go ahead and fix some perl packages. Those listed in:
http://d10179.dtk.chello.nl/build/cooker/alpha/perl5/ and
http://d10179.dtk.chello.nl/build/cooker/i586/perl5/
These packages get their %files information out of a filelist that it
generates itself. Later in the proces clean_perl comes along and deletes
some of those files (.packlist and *.bs):
#!/bin/sh
d=$RPM_BUILD_ROOT/usr/lib/perl5
[ -d $d ] || exit 0
find $d -name ".packlist" | xargs rm -f
for i in $(find $d -name "*.bs"); do
if [ -s $i ]; then
echo "non empty *.bs file, please mail [EMAIL PROTECTED]
about this!" else
rm -f $i
fi
done
I'd like to replace the filelist generation by a "normal" filelist. Is
this OK with mandrake, or is this a waste of my time?
Stefan