8000 Quick fix required to fix SED script in postgres.shell.mk · koderP/postgres@1aa15e6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1aa15e6

Browse files
committed
Quick fix required to fix SED script in postgres.shell.mk
V1.07
1 parent 729f10a commit 1aa15e6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/mk/postgres.shell.mk

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
#
1313
# IDENTIFICATION
14-
# $Header: /cvsroot/pgsql/src/mk/Attic/postgres.shell.mk,v 1.1.1.1 1996/07/09 06:22:19 scrappy Exp $
14+
# $Header: /cvsroot/pgsql/src/mk/Attic/postgres.shell.mk,v 1.1.1.1.2.1 1996/10/04 20:25:31 scrappy Exp $
1515
#
1616
# NOTES
1717
# the shell script you write might include the following strings which
@@ -20,6 +20,7 @@
2020
# _fUnKy_BINDIR_sTuFf_ - location of installed binaries
2121
# _fUnKy_DATADIR_sTuFf_ - location of the data directory
2222
# _fUnKy_POSTGRESDIR_sTuFf_ - location of the postgres "home" directory
23+
# _fUnKy_POSTPORT_sTuFf_ - port to run the postmaster on
2324
# _fUnKy_IPCCLEANPATH_sTuFf_ - location of the ipcs and ipcrm programs
2425
# _fUnKy_DASH_N_sTuFf_ - -n flag used in echo
2526
# _fUnKy_BACKSLASH_C_sTuFf_ - continuation (echo)
@@ -32,7 +33,8 @@
3233
SEDSCRIPT= -e "s^_fUnKy_BINDIR_sTuFf_^$(BINDIR)^g" \
3334
-e "s^_fUnKy_DATADIR_sTuFf_^$(DATADIR)^g" \
3435
-e "s^_fUnKy_IPCCLEANPATH_sTuFf_^$(IPCSDIR)^g" \
35-
-e "s^_fUnKy_POSTGRESDIR_sTuFf_^$(POSTGRESDIR)^g"
36+
-e "s^_fUnKy_POSTGRESDIR_sTuFf_^$(POSTGRESDIR)^g" \
37+
-e "s^_fUnKy_POSTPORT_sTuFf_^$(POSTPORT)^g"
3638

3739
#
3840
# We also need to fix up the scripts to deal with the lack of installed

0 commit comments

Comments
 (0)
0