Rev 265 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#!/bin/sh## Should work from anywhere in the R source tree.RHOME=`dirname $0`/.. # relativeRHOME=`cd ${RHOME}; pwd` # absoluteexport RHOMEPKGS=`cd ${RHOME}/src/library; ls | sed '/^\./d/CVS/d/LIB*/d/Makefile/d/profile/d'`## The LibIndex is now built and updated via $RHOME/etc/INSTALLLI=${RHOME}/library/LibIndexif [ ! -f $LI ]; then cp /dev/null $LI; ficd ${RHOME}/src/libraryfor pkg in ${PKGS}do${RHOME}/etc/build-help ${pkg}done