From: <smi...@us...> - 2004-02-28 16:32:52
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5422/scripts Modified Files: Python coreutils Log Message: corrected missing symlinks for python and env Index: Python =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Python,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- Python 1 Feb 2004 15:04:23 -0000 1.19 +++ Python 28 Feb 2004 16:15:24 -0000 1.20 @@ -39,8 +39,8 @@ strip_debug # we need to install it, because Python-LDAP needs it make install || exit 1 - ln -sf python2.3 $WORKDIR/Python-install/usr/bin/python - ln -sf python2.3 $WORKDIR/Python-install/usr/bin/python2 + ln -sf python2.3 $WORKDIR/Python-install/usr/bin/python || exit 1 + ln -sf python2.3 $WORKDIR/Python-install/usr/bin/python2 || exit 1 mkdir -p $WORKDIR/Python-install/usr/share mv $WORKDIR/Python-install/usr/man $WORKDIR/Python-install/usr/share cp -dpR $WORKDIR/Python-install/* / || exit 1 @@ -53,7 +53,6 @@ rm -rf $WORKDIR/Python-install/usr/include || exit 1 find $WORKDIR/Python-install/usr/ -name *.pyc | xargs rm find $WORKDIR/Python-install/usr/ -name *.pyo | xargs rm - rm $WORKDIR/Python-install/usr/bin/python copy_files $WORKDIR/Python-install/usr $CDDIR || exit 1 fi ;; Index: coreutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/coreutils,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- coreutils 11 Jan 2004 14:43:04 -0000 1.7 +++ coreutils 28 Feb 2004 16:15:24 -0000 1.8 @@ -41,11 +41,13 @@ install ) rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/bin || exit 1 + mkdir -p $WORKDIR/tmp/usr/bin || exit 1 make DESTDIR=$WORKDIR/tmp install || exit 1 rm $WORKDIR/tmp/bin/su #rm $WORKDIR/tmp/bin/hostname copy_docs $WORKDIR/tmp ln -sf test $WORKDIR/tmp/bin/[ + ln -sf /bin/env $WORKDIR/tmp/usr/bin/env cp -dpR $WORKDIR/tmp/* $CDDIR/ || exit 1 rm -rf $WORKDIR/tmp || exit ;; |