summaryrefslogtreecommitdiff
path: root/doc/Makefile
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>1998-11-29 05:30:25 +0000
committerTom Lane <tgl@sss.pgh.pa.us>1998-11-29 05:30:25 +0000
commitb10a71977778e33538a4fa41a3eac79eda0534ec (patch)
tree6e8b90dfddfa7484921b21b770cd377d8181b650 /doc/Makefile
parent92eacaf52349d8274d5924ff11956377ba7e968f (diff)
downloadpostgresql-b10a71977778e33538a4fa41a3eac79eda0534ec.tar.gz
Use autoconf to determine whether system has POSIX signals,
instead of relying on port's os.h to tell us. (Needed for HPUX where system major version is not enough info.) configure unsets USE_TK if X libraries not found. doc/Makefile uses gzcat or zcat as found by autoconf.
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/Makefile b/doc/Makefile
index a019413e71..baa809d797 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -8,7 +8,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/doc/Makefile,v 1.11 1998/10/20 23:14:35 momjian Exp $
+# $Header: /cvsroot/pgsql/doc/Makefile,v 1.12 1998/11/29 05:30:13 tgl Exp $
#
#----------------------------------------------------------------------------
@@ -16,6 +16,7 @@ PGDOCS= $(POSTGRESDIR)/doc
SRCDIR= ../src
TAR= tar
+GZCAT= zcat
# Pick up Makefile.global from the source area
# This is the only resource from the code source area and is optional.
@@ -73,6 +74,6 @@ man::
%: %.tar.gz
rm -rf ./$@ $(PGDOCS)/$*
if test ! -d $(PGDOCS)/$* ; then mkdir $(PGDOCS)/$* ; fi
- zcat $< | $(TAR) xf - -C $(PGDOCS)/$*
+ $(GZCAT) $< | (cd $(PGDOCS)/$* ; $(TAR) xf - )
# touch ./$*