Everything has moved, which led the binary-distribution script not to
include test-passed files, and the install script to look for them in
the wrong place anyway.
$b/contrib/vanilla-module.mk \
`for contrib in $(cd $b/contrib && echo *); do
src_dir=$b/contrib/$contrib
- if test -d $src_dir && test -f $obj_dir/test-passed.test-report; then
- find $src_dir -name CVS -type d -prune -o \! -type d \! -name '.cvsignore' -print
+ cache_dir=$b/obj/asdf-cache/$contrib
+ if test -d $src_dir && test -f $cache_dir/test-passed.test-report; then
+ echo $src_dir/Makefile
+ echo $cache_dir/test-passed.test-report
fi
done` \
$b/obj/sbcl-home
. ./find-gnumake.sh
find_gnumake
-for i in `cd contrib ; echo *`; do
- test -d contrib/$i && test -f obj/asdf-cache/$i/test-passed.test-report || continue;
+for i in `cd obj/asdf-cache ; echo *`; do
+ test -d obj/asdf-cache/$i && test -f obj/asdf-cache/$i/test-passed.test-report || continue;
INSTALL_DIR="$SBCL_HOME/contrib/"
export INSTALL_DIR
ensure_dirs "$BUILD_ROOT$INSTALL_DIR" && $GNUMAKE -C contrib/$i install < /dev/null