aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-07 23:53:47 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-07 23:53:47 +0000
commit6470d5b1c130d96a0dffe64121197a2a6f98ac71 (patch)
treebef3f26744b33ad426ea5797e4ab25e17760f8a4 /src
parent4e8f5c337cc46f30471346b968f03413408425b2 (diff)
downloadpostgresql-6470d5b1c130d96a0dffe64121197a2a6f98ac71.tar.gz
postgresql-6470d5b1c130d96a0dffe64121197a2a6f98ac71.zip
Fix handling of no '../doc' directory in compile procedure...
Diffstat (limited to 'src')
-rw-r--r--src/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index eee4ac3b29f..6b9ea3f9565 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Makefile,v 1.6 1996/10/04 20:07:04 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/Makefile,v 1.7 1996/10/07 23:53:47 scrappy Exp $
#
# NOTES
# objdir - location of the objects and generated files (eg. obj)
@@ -32,7 +32,9 @@ ifeq ($(USE_TCL), true)
$(MAKE) -C libpgtcl $@
endif
$(MAKE) -C bin $@
+ifneq ($(wildcard $(MKDIR)/../../doc), )
$(MAKE) -C ../doc $@
+endif
@-chown -R $(POSTGRESLOGIN) $(POSTGRESDIR) 2>/dev/null
@if test $@. = all. -o $@. = .; then \
echo All of Postgres95 is successfully made. Ready to install. ;\