Skip to content

Commit 5bc122c

Browse files
committed
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>
1 parent 60b0605 commit 5bc122c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Makefile,v 1.3.2.3 1996/10/25 09:23:42 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Makefile,v 1.3.2.4 1996/10/25 09:42:47 scrappy Exp $
1111
#
1212
# NOTES
1313
# objdir - location of the objects and generated files (eg. obj)
@@ -40,7 +40,9 @@ endif
4040
ifeq (../doc, $(wildcard ../doc))
4141
$(MAKE) -C ../doc $@
4242
endif
43-
@echo All of Postgres95 is successfully made. Ready to install.
43+
@if test $@. = all. -o $@. = .; then \
44+
echo All of Postgres95 is successfully made. Ready to install. ;\
45+
fi
4446

4547
TAGS:
4648
rm -f TAGS; \

0 commit comments

Comments
 (0)