From: Bruce S. <bl...@us...> - 2004-06-25 13:05:29
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13845/scripts Modified Files: perl Log Message: Modification required for a new perl release. Index: perl =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/perl,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- perl 25 Jun 2004 01:52:04 -0000 1.30 +++ perl 25 Jun 2004 13:05:20 -0000 1.31 @@ -86,8 +86,12 @@ rm $WORKDIR/tmp/bin/perl || exit 1 # check here if install fails, you probably upgraded to a new perl release - PERLBIN=perl5.8.3 - [ -e $WORKDIR/tmp/bin/$PERLBIN ] || exit 1 + PERLBIN=perl5.8.4 + if [ ! -e $WORKDIR/tmp/bin/$PERLBIN ]; then + echo "You need to edit the perl install script" + echo "every time you update to a new release" + exit 1 + fi ln -sf $PERLBIN $WORKDIR/tmp/bin/perl || exit 1 cp -dpR $WORKDIR/tmp/* $CDDIR/usr/ || exit 1 |