diff options
author | Tom Lane | 2003-08-04 20:52:48 +0000 |
---|---|---|
committer | Tom Lane | 2003-08-04 20:52:48 +0000 |
commit | c45b851e373d9de2b89c2c7a07d58036526452de (patch) | |
tree | 9bdee031a14a2035366e3d57497e226842013455 | |
parent | 3b29525a799d4c7ccd80e8867fd18d618e683485 (diff) |
Fix erroneous direct reference to postgres.tar.gz, per bug report
from Garrick Staples.
-rw-r--r-- | doc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile b/doc/Makefile index daafe7e993a..2bdecc996ee 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/doc/Makefile,v 1.24 2002/11/27 23:21:12 tgl Exp $ +# $Header: /cvsroot/pgsql/doc/Makefile,v 1.25 2003/08/04 20:52:48 tgl Exp $ # #---------------------------------------------------------------------------- @@ -70,7 +70,7 @@ endif # found_man install: all installdirs ifdef found_html - gzip -d -c postgres.tar.gz | ( cd $(DESTDIR)$(docdir)/html && $(TAR) xf - ) + gzip -d -c $(srcdir)/postgres.tar.gz | ( cd $(DESTDIR)$(docdir)/html && $(TAR) xf - ) endif ifdef found_man for file in man1/*.1 man$(sqlmansectnum)/*.$(sqlmansect) ; do \ |