This fixes a regression introduced by commit v1.11-766-g619c1b2. * tests/install-info-dir.test: Do not attempt to read or modify $instdir/info/dir file when install-info is not available.
Signed-off-by: Dmitry V. Levin <l...@altlinux.org> --- tests/install-info-dir.test | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/install-info-dir.test b/tests/install-info-dir.test index 405480d..1b75e8d 100755 --- a/tests/install-info-dir.test +++ b/tests/install-info-dir.test @@ -155,16 +155,16 @@ for val in no NO n; do test -f $instdir/info/foo.info test ! -f $instdir/info/dir done +if test $have_installinfo = yes; then $MAKE install-info chmod a-w $instdir/info/dir for val in no NO n; do env AM_UPDATE_INFO_DIR="$val" $MAKE uninstall $FGREP 'Does nothing at all, but has a nice name' $instdir/info/dir done -if test $have_installinfo = yes; then for val in 'yes' 'who cares!'; do rm -rf $instdir env AM_UPDATE_INFO_DIR="$val" $MAKE install-info test -f $instdir/info/foo.info -- ldv