"Marc G. Fournier" <scrappy@postgresql.org> writes:
> cp ~ftp/pub/dev/doc/postgres.tar.gz ~ftp/pub/dev/doc/man-7.4.tar.gz ../doc
That doesn't look right; for one thing you just made a postgres.tar.gz,
why would you overwrite it? Also see the business about whether
man.tar.gz has a version number.
> cd sgml
> gmake HISTORY INSTALL
> cp HISTORY INSTALL ../../..
> cd ../../..
This gmake will leave some crud files that you don't want in the distro.
Instead of 'cp' I'd suggest
mv -f HISTORY INSTALL ../../..
gmake clean
Not sure if there are any other issues.
regards, tom lane