From 487e91484da6e27dfb3569d9dbc0dc22b1922920 Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Thu, 3 Oct 1996 20:09:48 +0000
Subject: [PATCH] Added chown to Makefile to set files to Postgres user. Does
 not display and generates no error messages on failure.

---
 src/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/Makefile b/src/Makefile
index 00c544d78cc..76c60a8940f 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -7,7 +7,7 @@
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/Makefile,v 1.4 1996/08/13 07:47:43 scrappy Exp $
+#    $Header: /cvsroot/pgsql/src/Makefile,v 1.5 1996/10/03 20:09:48 momjian Exp $
 #
 # NOTES
 #	objdir	- location of the objects and generated files (eg. obj)
@@ -33,6 +33,7 @@ ifeq ($(USE_TCL), true)
 endif
 	$(MAKE) -C bin $@
 	$(MAKE) -C ../doc $@
+	@-chown -R $(POSTGRESLOGIN) $(POSTGRESDIR) 2>/dev/null
 	@echo All of Postgres95 is successfully made.  Ready to install.
 
 TAGS:
-- 
GitLab