for info in doc/manual/*.info
do
cp $info $BUILD_ROOT$INFO_DIR/ \
- && echo -n " info $BUILD_ROOT$INFO_DIR/`basename $info`" \
- && ( install-info $BUILD_ROOT$INFO_DIR/`basename $info` > /dev/null 2>&1 \
+ && echo -n " info $BUILD_ROOT$INFO_DIR/`basename $info` $BUILD_ROOT$INFO_DIR/dir" \
+ && ( install-info $BUILD_ROOT$INFO_DIR/`basename $info` $BUILD_ROOT$INFO_DIR/dir > /dev/null 2>&1 \
|| echo -n " (could not add to system catalog)" ) \
&& echo
done
# Sometimes people used to see the "No tests failed." output from the last
# DEFTEST in contrib self-tests and think that's all that is. So...
-FLAG=true
+HEADER_HAS_BEEN_PRINTED=false
for dir in contrib/*
do
- if [ -d "$dir" -a -e "$dir/Makefile" -a ! -e "$dir/test-passed" ]; then
- if $FLAG; then
+ if [ -d "$dir" -a -f "$dir/Makefile" -a ! -f "$dir/test-passed" ]; then
+ if $HEADER_HAS_BEEN_PRINTED; then
echo > /dev/null
else
echo "Failed contribs:"
- FLAG=false
+ HEADER_HAS_BEEN_PRINTED=true
fi
echo " `basename $dir`"
fi
$(CC) ${LINKFLAGS} ${OS_LINK_FLAGS} -o $@ ${OBJS} ${OS_OBJS} ${OS_LIBS} -lm
-.PHONY: clean all
+.PHONY: clean
clean:
-rm -f depend *.o sbcl sbcl.nm core *.tmp $(CLEAN_FILES)
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.1.1"
+"0.9.1.2"