From: Rudi Schlatte Date: Mon, 5 Nov 2007 04:30:37 +0000 (+0000) Subject: 1.0.11.8: also fix install-info on Debian X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=61c48c18e47448facd5e41f5b502eee656337cef;p=sbcl.git 1.0.11.8: also fix install-info on Debian Also reported by Eugene Ossintsev --- diff --git a/install.sh b/install.sh index 9722300..051e44b 100644 --- a/install.sh +++ b/install.sh @@ -112,7 +112,8 @@ for info in doc/manual/*.info do cp $info "$BUILD_ROOT$INFO_DIR"/ \ && 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 \ + && ( install-info --info-dir="$BUILD_ROOT$INFO_DIR" \ + "$BUILD_ROOT$INFO_DIR"/`basename $info` > /dev/null 2>&1 \ || echo -n " (could not add to system catalog)" ) \ && echo done diff --git a/version.lisp-expr b/version.lisp-expr index 2abd2dd..8aba45a 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; 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".) -"1.0.11.7" +"1.0.11.8"