Index: ChangeLog =================================================================== RCS file: /cvs/autoconf/ChangeLog,v retrieving revision 1.1121 diff -u -r1.1121 ChangeLog --- ChangeLog 2000/12/06 17:32:38 1.1121 +++ ChangeLog 2000/12/07 14:52:09 @@ -1,3 +1,8 @@ +2000-12-07 Morten Eriken + + * man/Makefile.am: Fix build for config.sub.1 and config.guess.1 + man pages. + 2000-12-06 Akim Demaille * configure.in: Bump version to 2.49c. Index: man/Makefile.am =================================================================== RCS file: /cvs/autoconf/man/Makefile.am,v retrieving revision 1.2 diff -u -r1.2 Makefile.am --- man/Makefile.am 2000/12/06 16:02:59 1.2 +++ man/Makefile.am 2000/12/07 14:52:09 @@ -24,13 +24,13 @@ SUFFIXES = .x .1 .x.1: - @if test -f $(top_builddir)/$*; then \ + @if test -f $(top_srcdir)/$*; then \ echo "Updating man page $@"; \ $(HELP2MAN) \ --include=$(srcdir)/$*.x \ --include=$(srcdir)/common.x \ --output=$@ \ - $(top_builddir)/$*; \ + "@SHELL@ $(top_srcdir)/$*"; \ else \ echo "WARNING: The man page $@ cannot be updated yet."; \ echo " Retry once the corresponding executable is built."; \