summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-10-25 09:42:47 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-10-25 09:42:47 +0000
commit5bc122c9e113fa71d9e35c912b2f7f37e810e9bd (patch)
treed2914de453b23eccb857f64807d6edcfc3715d3c
parent60b060592529c561930006558846891cc4934f88 (diff)
downloadpostgresql-5bc122c9e113fa71d9e35c912b2f7f37e810e9bd.tar.gz
One thing we said before should go into 1.09 is the fix to the master
make file so it doesn't say "Postgres made - ready to install" when you do a make install or make clean. Bryan Henderson <bryanh@giraffe.netgate.net>
-rw-r--r--src/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 10b981ba30..548bd2c4e1 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Makefile,v 1.3.2.3 1996/10/25 09:23:42 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/Makefile,v 1.3.2.4 1996/10/25 09:42:47 scrappy Exp $
#
# NOTES
# objdir - location of the objects and generated files (eg. obj)
@@ -40,7 +40,9 @@ endif
ifeq (../doc, $(wildcard ../doc))
$(MAKE) -C ../doc $@
endif
- @echo All of Postgres95 is successfully made. Ready to install.
+ @if test $@. = all. -o $@. = .; then \
+ echo All of Postgres95 is successfully made. Ready to install. ;\
+ fi
TAGS:
rm -f TAGS; \