man6.sh (automake-1.16.2.tar.xz) | : | man6.sh (automake-1.16.3.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 67 | skipping to change at line 67 | |||
chmod +x foobar bazquux zardoz | chmod +x foobar bazquux zardoz | |||
$ACLOCAL | $ACLOCAL | |||
$AUTOMAKE | $AUTOMAKE | |||
$AUTOCONF | $AUTOCONF | |||
mkdir build | mkdir build | |||
cd build | cd build | |||
../configure | ../configure | |||
# Sanity check. | # Sanity check. The line we're matching looks like this: | |||
grep '^HELP2MAN *=.*/missing help2man' Makefile | # HELP2MAN = ${SHELL} '/am/checkout/t/man6.dir/missing' help2man | |||
# so let's not try to match the exact intervening quote. | ||||
grep '^HELP2MAN *=.*/missing.* help2man' Makefile | ||||
$MAKE | $MAKE | |||
$FGREP foobar ../foobar.1 | $FGREP foobar ../foobar.1 | |||
$FGREP bazquux ./bazquux.1 | $FGREP bazquux ./bazquux.1 | |||
$FGREP zardoz ../zardoz.1 | $FGREP zardoz ../zardoz.1 | |||
$MAKE distdir | $MAKE distdir | |||
$FGREP foobar $me-1.0/foobar.1 | $FGREP foobar $me-1.0/foobar.1 | |||
$FGREP bazquux $me-1.0/bazquux.1 | $FGREP bazquux $me-1.0/bazquux.1 | |||
$FGREP zardoz $me-1.0/zardoz.1 | $FGREP zardoz $me-1.0/zardoz.1 | |||
$MAKE distcheck | $MAKE distcheck | |||
cd .. | cd .. | |||
rm -f *.1 # Remove leftover generated manpages. | rm -f *.1 # Remove leftover generated manpages. | |||
./configure | ./configure | |||
# Sanity check. | # Sanity check again, same as above. | |||
grep '^HELP2MAN *=.*/missing help2man' Makefile | grep '^HELP2MAN *=.*/missing.* help2man' Makefile | |||
$MAKE | $MAKE | |||
$FGREP foobar foobar.1 | $FGREP foobar foobar.1 | |||
$FGREP bazquux bazquux.1 | $FGREP bazquux bazquux.1 | |||
$FGREP zardoz zardoz.1 | $FGREP zardoz zardoz.1 | |||
$MAKE distdir | $MAKE distdir | |||
$FGREP foobar $me-1.0/foobar.1 | $FGREP foobar $me-1.0/foobar.1 | |||
$FGREP bazquux $me-1.0/bazquux.1 | $FGREP bazquux $me-1.0/bazquux.1 | |||
$FGREP zardoz $me-1.0/zardoz.1 | $FGREP zardoz $me-1.0/zardoz.1 | |||
End of changes. 2 change blocks. | ||||
4 lines changed or deleted | 6 lines changed or added |