diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 1997-10-05 21:00:49 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 1997-10-05 21:00:49 +0000 |
commit | a53f1f9a5eba357f0d06c10990f9c9de3521bce1 (patch) | |
tree | 89d03d4be89aa874637e26b5486ffaa2b703b4cb /databases/postgresql92-server/Makefile | |
parent | Activate platex-{common,euc,jis,sjis} and detach platex. (diff) |
- remove the ampersand, postmaster process automatically goes into
background because of the -S option.
- remove the -D datadir option, it's meaningless, because the pgsql
user environment overwrites it with the PGDATA env variable.
Since this is important and might cause some headache, I mentioned
this in ~pgsql/.profile and the startup script.
Submitted by: John Fiber
Notes
Notes:
svn path=/head/; revision=8127
Diffstat (limited to 'databases/postgresql92-server/Makefile')
-rw-r--r-- | databases/postgresql92-server/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/databases/postgresql92-server/Makefile b/databases/postgresql92-server/Makefile index e433f213cb3a..a5c3891e3166 100644 --- a/databases/postgresql92-server/Makefile +++ b/databases/postgresql92-server/Makefile @@ -3,7 +3,7 @@ # Date created: April 2, 1997 # Whom: Marc G. Fournier <scrappy@FreeBSD.ORG> # -# $Id: Makefile,v 1.16 1997/10/04 22:43:21 andreas Exp $ +# $Id: Makefile,v 1.17 1997/10/04 23:38:59 andreas Exp $ DISTNAME= postgresql-6.2 CATEGORIES= databases @@ -77,6 +77,8 @@ post-install: >> ${PREFIX}/pgsql/.profile; \ ${ECHO} "PGLIB=${PREFIX}/pgsql/lib" \ >> ${PREFIX}/pgsql/.profile; \ + ${ECHO} "# note: PGDATA overwrites the -D startup option" \ + >> ${PREFIX}/pgsql/.profile; \ ${ECHO} "PGDATA=${PREFIX}/pgsql/data" \ >> ${PREFIX}/pgsql/.profile; \ ${ECHO} "DISPLAY=:0" \ |